Enum conrod::widget::MaybeParent[][src]

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

The builder argument for the Widget's parent.

Variants

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

The user gave a specific parent widget.

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

Methods

impl MaybeParent
[src]

Convert the MaybeParent into an Option.

If Unspecified, check the positioning to retrieve the Id from there.

If None, the Ui's window widget will be used.

Note: This method does not check whether or not using the window widget as the parent would cause a cycle. If it is important that the inferred parent should not cause a cycle, use get instead.

The same as get_unchecked, but checks whether or not the widget that we're inferring the parent for is the Ui's window (which cannot have a parent, without creating a cycle).

Trait Implementations

impl Copy for MaybeParent
[src]

impl Clone for MaybeParent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MaybeParent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for MaybeParent
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for MaybeParent

impl Sync for MaybeParent