Enum nannou::ui::widget::grid::Axis[][src]

pub enum Axis<X, Y> {
    X(Lines<X>),
    Y(Lines<Y>),
}

A series of lines distributed over an axis.

Variants

Vertical lines that are spread across the x axis.

Horizontal lines that are spread across the y axis.

Trait Implementations

impl<X, Y> Clone for Axis<X, Y> where
    X: Clone,
    Y: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<X, Y> Debug for Axis<X, Y> where
    X: Debug,
    Y: Debug
[src]

Formats the value using the given formatter. Read more

impl<X, Y> Copy for Axis<X, Y> where
    X: Copy,
    Y: Copy
[src]

Auto Trait Implementations

impl<X, Y> Send for Axis<X, Y> where
    X: Send,
    Y: Send

impl<X, Y> Sync for Axis<X, Y> where
    X: Sync,
    Y: Sync