Enum conrod::Vertical [] [src]

pub enum Vertical {
    Top,
    Middle,
    Bottom,
}

The orientation of a VerticalAlign.

Variants

Top

Align the top edges of the widgets.

Middle

Align the centres of the widgets' closest parallel edges.

Bottom

Align the bottom edges of the widgets.

Methods

impl Vertical
[src]

fn to(&self, target_height: Scalar, height: Scalar) -> Scalar

Align height to the given target_height.

Trait Implementations

impl Eq for Vertical
[src]

impl PartialEq for Vertical
[src]

fn eq(&self, __arg_0: &Vertical) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Decodable for Vertical
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Vertical, __D::Error>

impl Encodable for Vertical
[src]

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Debug for Vertical
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Vertical
[src]

fn clone(&self) -> Vertical

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

impl Copy for Vertical
[src]