Enum gnuplot::AutoOption[][src]

pub enum AutoOption<T> {
    Fix(T),
    Auto,
}

An enumeration of something that can either be fixed (e.g. the maximum of X values), or automatically determined

Variants

Fixes the value to a specific value

Lets the value scale automatically

Methods

impl<T> AutoOption<T>
[src]

Same as Option::map

Trait Implementations

impl<T: Copy> Copy for AutoOption<T>
[src]

impl<T: Clone> Clone for AutoOption<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

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

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