pub trait ISimpleAnimation_EditorState: IObject {
// Provided methods
fn clip(self) -> AnimationClip { ... }
fn set_clip(self, value: AnimationClip) { ... }
fn name(self) -> Il2CppString { ... }
fn set_name(self, value: Il2CppString) { ... }
fn default_state(self) -> bool { ... }
fn set_default_state(self, value: bool) { ... }
}Provided Methods§
fn clip(self) -> AnimationClip
fn set_clip(self, value: AnimationClip)
fn name(self) -> Il2CppString
fn set_name(self, value: Il2CppString)
fn default_state(self) -> bool
fn set_default_state(self, value: bool)
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.