Enum conrod::widget::file_navigator::directory_view::Event [] [src]

pub enum Event {
    Selection(Vec<PathBuf>),
    Click(ClickVec<PathBuf>),
    DoubleClick(DoubleClickVec<PathBuf>),
    Press(PressVec<PathBuf>),
    Release(ReleaseVec<PathBuf>),
}

The kinds of Events produced by the DirectoryView.

Variants

Some change in the Selection occurred. This represents the new full selection.

One or more entries have been double clicked.

One or more entries have been double clicked.

A Press event occurred while the given entries were selected.

A Release event occurred while the given entries were selected.

Trait Implementations

impl Clone for Event
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more