Enum gnuplot::Tick[][src]

pub enum Tick<T> {
    Major(T, AutoOption<String>),
    Minor(T),
}

Specifies a type of axis tick

Variants

Major ticks have position and an optional label. The label may have a single C-style format specifier which will be replaced by the location of the tick

Minor ticks only have position

Auto Trait Implementations

impl<T> Send for Tick<T> where
    T: Send

impl<T> Sync for Tick<T> where
    T: Sync