Enum conrod::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: Copy, Y: Copy> Copy for Axis<X, Y>
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.