Struct chargrid_event_routine::Decorated[][src]

pub struct Decorated<T, D> { /* fields omitted */ }

Trait Implementations

impl<T, D> EventRoutine for Decorated<T, D> where
    T: EventRoutine,
    D: Decorate<View = T::View, Data = T::Data>, 
[src]

type Return = T::Return

type Data = T::Data

type View = T::View

type Event = T::Event

Auto Trait Implementations

impl<T, D> RefUnwindSafe for Decorated<T, D> where
    D: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, D> Send for Decorated<T, D> where
    D: Send,
    T: Send

impl<T, D> Sync for Decorated<T, D> where
    D: Sync,
    T: Sync

impl<T, D> Unpin for Decorated<T, D> where
    D: Unpin,
    T: Unpin

impl<T, D> UnwindSafe for Decorated<T, D> where
    D: 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, 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.