Enum cursive_tree_view::Placement [] [src]

pub enum Placement {
    After,
    Before,
    FirstChild,
    LastChild,
    Parent,
}

Determines how items are inserted into a TreeView.

Variants

The item is inserted as a sibling after the specified row.

The item is inserted as a sibling before the specified row.

The item is inserted as new child of the specified row, placed before all other existing children.

The item is inserted as new child of the specified row, placed after all other existing children.

The item is inserted as the new immediate parent of the specified row.

Trait Implementations

impl Eq for Placement
[src]

impl PartialEq for Placement
[src]

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

This method tests for !=.

impl Copy for Placement
[src]

impl Clone for Placement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Placement
[src]

Formats the value using the given formatter.