[][src]Struct chargrid_event_routine::Then

pub struct Then<T, U, F>(_);

Trait Implementations

impl<T, U, F> EventRoutine for Then<T, U, F> where
    T: EventRoutine,
    U: EventRoutine<Data = T::Data, View = T::View, Event = T::Event>,
    F: FnOnce() -> U, 
[src]

type Return = U::Return

type Data = T::Data

type View = T::View

type Event = T::Event

Auto Trait Implementations

impl<T, U, F> RefUnwindSafe for Then<T, U, F> where
    F: RefUnwindSafe,
    T: RefUnwindSafe,
    U: RefUnwindSafe

impl<T, U, F> Send for Then<T, U, F> where
    F: Send,
    T: Send,
    U: Send

impl<T, U, F> Sync for Then<T, U, F> where
    F: Sync,
    T: Sync,
    U: Sync

impl<T, U, F> Unpin for Then<T, U, F> where
    F: Unpin,
    T: Unpin,
    U: Unpin

impl<T, U, F> UnwindSafe for Then<T, U, F> where
    F: UnwindSafe,
    T: UnwindSafe,
    U: 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.