pub trait IWdwTutorialLocatorRootMethods: IWdwTutorialLocatorRoot {
Show 13 methods
// Provided methods
fn on_destroy(self) { ... }
fn set_active_right_arrow(self, enable: impl Into<bool>) { ... }
fn set_active_left_arrow(self, enable: impl Into<bool>) { ... }
fn set_sprite(self, sprite: impl Into<Sprite>) { ... }
fn set_title(self, title: impl Into<Il2CppString>) { ... }
fn set_text(self, text: impl Into<Il2CppString>) { ... }
fn set_page0(self, page: impl Into<i32>) { ... }
fn set_page1(self, page: impl Into<i32>) { ... }
fn is_opening(self) -> bool { ... }
fn is_closing(self) -> bool { ... }
fn open(self) { ... }
fn close(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Sourcefn set_active_right_arrow(self, enable: impl Into<bool>)
fn set_active_right_arrow(self, enable: impl Into<bool>)
SetActiveRightArrow(bool) overload
Sourcefn set_active_left_arrow(self, enable: impl Into<bool>)
fn set_active_left_arrow(self, enable: impl Into<bool>)
SetActiveLeftArrow(bool) overload
Sourcefn set_sprite(self, sprite: impl Into<Sprite>)
fn set_sprite(self, sprite: impl Into<Sprite>)
SetSprite(crate::unity_engine::sprite::Sprite) overload
Sourcefn set_title(self, title: impl Into<Il2CppString>)
fn set_title(self, title: impl Into<Il2CppString>)
SetTitle(::unity::Il2CppString) overload
Sourcefn set_text(self, text: impl Into<Il2CppString>)
fn set_text(self, text: impl Into<Il2CppString>)
SetText(::unity::Il2CppString) overload
Sourcefn is_opening(self) -> bool
fn is_opening(self) -> bool
IsOpening() overload
Sourcefn is_closing(self) -> bool
fn is_closing(self) -> bool
IsClosing() 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§
impl<__T: IWdwTutorialLocatorRoot> IWdwTutorialLocatorRootMethods for __T
Available on crate feature
root-wdwtutoriallocatorroot only.