pub trait AnimationPoseExt {
// Required method
fn apply(&self, ui: &mut UserInterface);
}Expand description
Extension trait for AnimationPose.
Required Methods§
Sourcefn apply(&self, ui: &mut UserInterface)
fn apply(&self, ui: &mut UserInterface)
Tries to set each value to the property from the animation pose to the respective widgets.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".