Skip to main content

TimeDataMapControl

Trait TimeDataMapControl 

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

Control operations trait for time data maps.

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§