pub trait IEmissionAnimationMethods: IEmissionAnimation {
// Provided methods
fn get_is_animate(self) -> bool { ... }
fn set_is_animate(self, value: impl Into<bool>) { ... }
fn awake(self) { ... }
fn update(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_is_animate(self) -> bool
fn get_is_animate(self) -> bool
get_IsAnimate() overload
Sourcefn set_is_animate(self, value: impl Into<bool>)
fn set_is_animate(self, value: impl Into<bool>)
set_IsAnimate(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: IEmissionAnimation> IEmissionAnimationMethods for __T
Available on crate feature
app-emissionanimation only.