Skip to main content

Animate

Trait Animate 

Source
pub trait Animate {
    type Value;

    // Required methods
    fn get(&self) -> &Self::Value;
    fn set(&mut self, target: Self::Value);
    fn target(&self) -> &Self::Value;
}

Required Associated Types§

Required Methods§

Source

fn get(&self) -> &Self::Value

Source

fn set(&mut self, target: Self::Value)

Source

fn target(&self) -> &Self::Value

Implementors§