[][src]Enum gnuplot::Tick

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

Specifies a type of axis tick

Variants

Major(T, AutoOption<S>)

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(T)

Minor ticks only have position

Trait Implementations

impl<T: Clone, S: Clone> Clone for Tick<T, S>[src]

impl<T: Debug, S: Debug> Debug for Tick<T, S>[src]

impl<T: Eq, S: Eq> Eq for Tick<T, S>[src]

impl<T: Ord, S: Ord> Ord for Tick<T, S>[src]

impl<T: PartialEq, S: PartialEq> PartialEq<Tick<T, S>> for Tick<T, S>[src]

impl<T: PartialOrd, S: PartialOrd> PartialOrd<Tick<T, S>> for Tick<T, S>[src]

impl<T, S> StructuralEq for Tick<T, S>[src]

impl<T, S> StructuralPartialEq for Tick<T, S>[src]

Auto Trait Implementations

impl<T, S> RefUnwindSafe for Tick<T, S> where
    S: RefUnwindSafe,
    T: RefUnwindSafe

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

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

impl<T, S> Unpin for Tick<T, S> where
    S: Unpin,
    T: Unpin

impl<T, S> UnwindSafe for Tick<T, S> where
    S: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.