Enum conrod::VerticalAlign [−] [src]

pub enum VerticalAlign {
    Top,
    Middle,
    Bottom,
}

The vertical alignment of a widget positioned relatively to another widget on the x axis.

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.

Trait Implementations

Derived Implementations

impl Eq for VerticalAlign

impl PartialEq for VerticalAlign

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

fn ne(&self, __arg_0: &VerticalAlign) -> bool

impl Decodable for VerticalAlign

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

impl Encodable for VerticalAlign

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

impl Debug for VerticalAlign

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

impl Clone for VerticalAlign

fn clone(&self) -> VerticalAlign

fn clone_from(&mut self, source: &Self)

impl Copy for VerticalAlign