Enum conrod::MaybeParent [] [src]

pub enum MaybeParent {
    None,
    Some(Index),
    Unspecified,
}

The builder argument for the Widget's parent.

Variants

None

The user specified the widget should not have any parents, so the Root will be used.

Some(Index)

The user gave a specific parent widget.

Unspecified

No parent widget was specified, so we will assume they want the last parent.

Methods

impl MaybeParent
[src]

fn get<C>(&self, ui: &Ui<C>, x_pos: Position, y_pos: Position) -> Option<Index>

Convert the MaybeParent into an Option.

If not given explicitly, check the positioning to retrieve the Index from there.

Trait Implementations

impl PartialEq for MaybeParent
[src]

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

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

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

This method tests for !=.

impl Debug for MaybeParent
[src]

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

Formats the value using the given formatter.

impl Clone for MaybeParent
[src]

fn clone(&self) -> MaybeParent

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