pub trait IntoAnimNode: Sized {
// Required method
fn into_anim_node(self) -> AnimNode;
}Expand description
A definition that can be lowered into the runtime animation tree.
Required Methods§
Sourcefn into_anim_node(self) -> AnimNode
fn into_anim_node(self) -> AnimNode
Lower this definition into its local runtime representation.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".