Enum conrod::position::Relative [] [src]

pub enum Relative {
    Scalar(Scalar),
    Align(Align),
    Direction(DirectionScalar),
    Place(Place),
}

Positions that are described as Relative to some other Widget.

Relative describes a relative position along a single axis.

Variants

A relative scalar distance.

Aligned to either the Start, Middle or End.

A distance as a Scalar value over the given Direction.

Some place on top of another widget.

Similar to Align, but represents the Start/End of the other widget's kid_area.

Also allows for specifying a Margin from either end.

Using Place allows the Ui to infer the widget's parent as the widget upon which it is Placed, though this inferrence only occurs if the parent was not specifically set.

Trait Implementations

impl Copy for Relative
[src]

impl Clone for Relative
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Relative
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Relative
[src]

[src]

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

[src]

This method tests for !=.