[][src]Struct chargrid_event_routine::EventRoutineView

pub struct EventRoutineView<'e, 'v, E: EventRoutine> {
    pub event_routine: &'e E,
    pub view: &'v mut E::View,
}

Fields

event_routine: &'e Eview: &'v mut E::View

Trait Implementations

impl<'e, 'v, 'd, E> View<&'d <E as EventRoutine>::Data> for EventRoutineView<'e, 'v, E> where
    E: EventRoutine
[src]

Auto Trait Implementations

impl<'e, 'v, E> RefUnwindSafe for EventRoutineView<'e, 'v, E> where
    E: RefUnwindSafe,
    <E as EventRoutine>::View: RefUnwindSafe

impl<'e, 'v, E> Send for EventRoutineView<'e, 'v, E> where
    E: Sync,
    <E as EventRoutine>::View: Send

impl<'e, 'v, E> Sync for EventRoutineView<'e, 'v, E> where
    E: Sync,
    <E as EventRoutine>::View: Sync

impl<'e, 'v, E> Unpin for EventRoutineView<'e, 'v, E>

impl<'e, 'v, E> !UnwindSafe for EventRoutineView<'e, 'v, E>

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.