AnimatedDataOps

Trait AnimatedDataOps 

Source
pub trait AnimatedDataOps {
    // Required methods
    fn len(&self) -> usize;
    fn is_empty(&self) -> bool;
    fn is_animated(&self) -> bool;
}
Expand description

Common operations trait for animated data types.

Required Methods§

Source

fn len(&self) -> usize

Returns the number of time samples.

Source

fn is_empty(&self) -> bool

Returns true if there are no time samples.

Source

fn is_animated(&self) -> bool

Returns true if there is more than one time sample.

Implementors§