pub trait CreationAnim<T: CreationRequirement + 'static> {
// Required methods
fn create(&mut self) -> AnimationCell<T>;
fn uncreate(&mut self) -> AnimationCell<T>;
}Expand description
The methods to create animations for T that satisfies CreationRequirement
Required Methods§
Sourcefn create(&mut self) -> AnimationCell<T>
fn create(&mut self) -> AnimationCell<T>
Create a Create anim for T.
Sourcefn uncreate(&mut self) -> AnimationCell<T>
fn uncreate(&mut self) -> AnimationCell<T>
Create an UnCreate anim for T.