CreationAnim

Trait CreationAnim 

Source
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§

Source

fn create(&mut self) -> AnimationCell<T>

Create a Create anim for T.

Source

fn uncreate(&mut self) -> AnimationCell<T>

Create an UnCreate anim for T.

Implementors§

Source§

impl<T: CreationRequirement + 'static> CreationAnim<T> for T