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
Fix(T)Fixes the value to a specific value
AutoLets the value scale automatically
Methods
impl<T> AutoOption<T>[src]
fn map<U, F: FnOnce(T) -> U>(self, f: F) -> AutoOption<U>
Same as Option::map
Trait Implementations
impl<T: Clone> Clone for AutoOption<T>[src]
fn clone(&self) -> AutoOption<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more