Skip to main content

IFishingSequenceMethods

Trait IFishingSequenceMethods 

Source
pub trait IFishingSequenceMethods: IFishingSequence {
    // Provided methods
    fn get_from_debug_menu(self) -> bool { ... }
    fn set_from_debug_menu(self, value: impl Into<bool>) { ... }
    fn on_shutdown(self) { ... }
    fn clear_record(self) { ... }
    fn load_resource(self) { ... }
    fn is_loading_resource(self) -> bool { ... }
    fn unload_resource(self) { ... }
    fn create_game_sequence(self) { ... }
    fn exit(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_from_debug_menu(self) -> bool

get_FromDebugMenu() overload

Source

fn set_from_debug_menu(self, value: impl Into<bool>)

set_FromDebugMenu(bool) overload

Source

fn on_shutdown(self)

OnShutdown() overload

Source

fn clear_record(self)

ClearRecord() overload

Source

fn load_resource(self)

LoadResource() overload

Source

fn is_loading_resource(self) -> bool

IsLoadingResource() overload

Source

fn unload_resource(self)

UnloadResource() overload

Source

fn create_game_sequence(self)

CreateGameSequence() overload

Source

fn exit(self)

Exit() overload

Source

fn ctor(self)

.ctor() overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IFishingSequence> IFishingSequenceMethods for __T

Available on crate feature app-fishingsequence only.