Enum cursive::views::LayerPosition[][src]

pub enum LayerPosition {
    FromBack(usize),
    FromFront(usize),
}

Identifies a layer in a StackView.

Variants

Starts from the back (bottom) of the stack.

Starts from the front (top) of the stack.

Trait Implementations

impl Clone for LayerPosition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for LayerPosition
[src]

impl Debug for LayerPosition
[src]

Formats the value using the given formatter. Read more

impl PartialEq for LayerPosition
[src]

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

This method tests for !=.

impl Eq for LayerPosition
[src]

Auto Trait Implementations