Enum iui::controls::GridInsertionStrategy [] [src]

pub enum GridInsertionStrategy {
    Leading,
    Top,
    Trailing,
    Bottom,
}

Informs a LayoutGrid as to position a control.

Variants

Place control to left of existing control, align tops

Place control above existing control, align left edges

Place control to right of existing control, align tops

Place control below existing control, align left edges

Trait Implementations

impl Clone for GridInsertionStrategy
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for GridInsertionStrategy
[src]

impl PartialEq for GridInsertionStrategy
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations