Skip to main content

INoticeManagerMethods

Trait INoticeManagerMethods 

Source
pub trait INoticeManagerMethods: INoticeManager {
    // Provided methods
    fn awake(self) { ... }
    fn start(self) { ... }
    fn is_finish(self, animator: impl Into<Animator>) -> bool { ... }
    fn can_show(self) -> bool { ... }
    fn show(self, text: impl Into<Il2CppString>, clear: impl Into<bool>) { ... }
    fn update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn awake(self)

Awake() overload

Source

fn start(self)

Start() overload

Source

fn is_finish(self, animator: impl Into<Animator>) -> bool

IsFinish(crate::unity_engine::animator::Animator) overload

Source

fn can_show(self) -> bool

CanShow() overload

Source

fn show(self, text: impl Into<Il2CppString>, clear: impl Into<bool>)

Show(::unity::Il2CppString, bool) overload

Source

fn update(self)

Update() 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: INoticeManager> INoticeManagerMethods for __T

Available on crate feature app-noticemanager only.