[][src]Struct geng_ui::EventHandler

pub struct EventHandler<T, F> { /* fields omitted */ }

Trait Implementations

impl<T, R: AsMut<T>, F> AsMut<T> for EventHandler<R, F>[src]

impl<T, R: AsRef<T>, F> AsRef<T> for EventHandler<R, F>[src]

impl<T: Widget, F: FnMut(&Event)> Widget for EventHandler<T, F>[src]

Auto Trait Implementations

impl<T, F> RefUnwindSafe for EventHandler<T, F> where
    F: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, F> Send for EventHandler<T, F> where
    F: Send,
    T: Send

impl<T, F> Sync for EventHandler<T, F> where
    F: Sync,
    T: Sync

impl<T, F> Unpin for EventHandler<T, F> where
    F: Unpin,
    T: Unpin

impl<T, F> UnwindSafe for EventHandler<T, F> where
    F: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

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> From<T> for T[src]

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

impl<T> SetParameter for T

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>,