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

pub enum Event<Selection, Direction, Size> {
    Item(Item<Direction, Size>),
    Selection(Selection),
    Press(Press),
    Release(Release),
    Click(Click),
    DoubleClick(DoubleClick),
}

The kind of events that the ListSelect may react to. Provides tuple(s) of index in list and string representation of selection

Variants

The next Item is ready for instantiation.

A change in selection has occurred.

A button press occurred while the widget was capturing the mouse.

A button release occurred while the widget was capturing the mouse.

A click occurred while the widget was capturing the mouse.

A double click occurred while the widget was capturing the mouse.

Trait Implementations

impl<Selection: Clone, Direction: Clone, Size: Clone> Clone for Event<Selection, Direction, Size>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Selection: Debug, Direction: Debug, Size: Debug> Debug for Event<Selection, Direction, Size>
[src]

Formats the value using the given formatter.