[][src]Enum nannou::ui::widget::list_select::Event

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

Item(Item<Direction, Size>)

The next Item is ready for instantiation.

Selection(Selection)

A change in selection has occurred.

Press(Press)

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

Release(Release)

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

Click(Click)

A click occurred while the widget was capturing the mouse.

DoubleClick(DoubleClick)

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

Trait Implementations

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

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

Auto Trait Implementations

impl<Selection, Direction, Size> RefUnwindSafe for Event<Selection, Direction, Size> where
    Direction: RefUnwindSafe,
    Selection: RefUnwindSafe,
    Size: RefUnwindSafe

impl<Selection, Direction, Size> Send for Event<Selection, Direction, Size> where
    Direction: Send,
    Selection: Send,
    Size: Send

impl<Selection, Direction, Size> Sync for Event<Selection, Direction, Size> where
    Direction: Sync,
    Selection: Sync,
    Size: Sync

impl<Selection, Direction, Size> Unpin for Event<Selection, Direction, Size> where
    Direction: Unpin,
    Selection: Unpin,
    Size: Unpin

impl<Selection, Direction, Size> UnwindSafe for Event<Selection, Direction, Size> where
    Direction: UnwindSafe,
    Selection: UnwindSafe,
    Size: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SetParameter for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,