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

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

The kinds of events that the FileNavigator may produce.

Variants

The directory at the top of the stack has changed.

The selection of files in the top of the stack has changed.

A Click event occurred over a selection of entries.

A file was double clicked.

A Press event occurred over a selection of entries.

A Release event occurred over a selection of entries.

Trait Implementations

impl Clone for Event
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Event
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Event

impl Sync for Event