Enum conrod::Place [] [src]

pub enum Place {
    Start(Option<Margin>),
    Middle,
    End(Option<Margin>),
}

Place the widget at a position on some other widget.

Variants

Start(Option<Margin>)

Place upon the Start of the Widget's kid_area.

Middle

Place upon the Middle of the Widget's kid_area.

End(Option<Margin>)

Place upon the End of the Widget's kid_area.

Trait Implementations

impl PartialEq for Place
[src]

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

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

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

This method tests for !=.

impl Debug for Place
[src]

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

Formats the value using the given formatter.

impl Clone for Place
[src]

fn clone(&self) -> Place

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 Place
[src]