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

pub enum Event<S> {
    Item(Item),
    Selection(S),
    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<S: Clone> Clone for Event<S>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<S: Debug> Debug for Event<S>
[src]

[src]

Formats the value using the given formatter. Read more