pub trait AnimationExt<T>: Sized + Animation<T>where
T: Animatable,{
// Provided methods
fn boxed(self) -> Box<dyn Animation<T>> { ... }
fn then(self, next: impl Animation<T>) -> Sequence<T> { ... }
fn delay(self, duration: impl Into<Duration>) -> Sequence<T> { ... }
}Expand description
Convenience methods for concrete animation sources.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".