Struct exec_rs::CombinedInvoker[][src]

pub struct CombinedInvoker<O: Invoker, I: Invoker> { /* fields omitted */ }

Struct that enables combining two Invokers by calling the second invoker inside the first one.

Implementations

impl<O: Invoker, I: Invoker> CombinedInvoker<O, I>[src]

pub fn combine(outer: O, inner: I) -> CombinedInvoker<O, I>[src]

Trait Implementations

impl<O: Invoker, I: Invoker> Invoker for CombinedInvoker<O, I>[src]

Auto Trait Implementations

impl<O, I> RefUnwindSafe for CombinedInvoker<O, I> where
    I: RefUnwindSafe,
    O: RefUnwindSafe

impl<O, I> Send for CombinedInvoker<O, I> where
    I: Send,
    O: Send

impl<O, I> Sync for CombinedInvoker<O, I> where
    I: Sync,
    O: Sync

impl<O, I> Unpin for CombinedInvoker<O, I> where
    I: Unpin,
    O: Unpin

impl<O, I> UnwindSafe for CombinedInvoker<O, I> where
    I: UnwindSafe,
    O: 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.