Struct unwind_safe::RunnerWithTryEval[][src]

pub struct RunnerWithTryEval<State, try_eval> { /* fields omitted */ }

Implementations

impl<State, try_eval> RunnerWithTryEval<State, try_eval>[src]

pub fn finally<R, finally>(
    self: RunnerWithTryEval<State, try_eval>,
    __: finally
) -> R where
    try_eval: FnOnce(&mut State) -> R,
    finally: FnOnce(State), 
[src]

Auto Trait Implementations

impl<State, try_eval> RefUnwindSafe for RunnerWithTryEval<State, try_eval> where
    State: RefUnwindSafe,
    try_eval: RefUnwindSafe

impl<State, try_eval> Send for RunnerWithTryEval<State, try_eval> where
    State: Send,
    try_eval: Send

impl<State, try_eval> Sync for RunnerWithTryEval<State, try_eval> where
    State: Sync,
    try_eval: Sync

impl<State, try_eval> Unpin for RunnerWithTryEval<State, try_eval> where
    State: Unpin,
    try_eval: Unpin

impl<State, try_eval> UnwindSafe for RunnerWithTryEval<State, try_eval> where
    State: UnwindSafe,
    try_eval: 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.