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§
Sourcefn is_finish(self, animator: impl Into<Animator>) -> bool
fn is_finish(self, animator: impl Into<Animator>) -> bool
IsFinish(crate::unity_engine::animator::Animator) overload
Sourcefn show(self, text: impl Into<Il2CppString>, clear: impl Into<bool>)
fn show(self, text: impl Into<Il2CppString>, clear: impl Into<bool>)
Show(::unity::Il2CppString, bool) 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: INoticeManager> INoticeManagerMethods for __T
Available on crate feature
app-noticemanager only.