Struct unwind_safe::Runner[][src]

pub struct Runner<State> { /* fields omitted */ }

Implementations

impl<State> Runner<State>[src]

#[must_use = "`.try_eval()` is lazy and does nothing: you need to call `.finally()`"]pub fn try_eval<R, try_eval>(
    self: Runner<State>,
    __: try_eval
) -> RunnerWithTryEval<State, try_eval> where
    try_eval: FnOnce(&mut State) -> R, 
[src]

Auto Trait Implementations

impl<State> RefUnwindSafe for Runner<State> where
    State: RefUnwindSafe

impl<State> Send for Runner<State> where
    State: Send

impl<State> Sync for Runner<State> where
    State: Sync

impl<State> Unpin for Runner<State> where
    State: Unpin

impl<State> UnwindSafe for Runner<State> where
    State: 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.