[][src]Struct mun_runtime::InvokeErr3

pub struct InvokeErr3<'s, A: ArgumentReflection, B: ArgumentReflection, C: ArgumentReflection, Output: ReturnTypeReflection> { /* fields omitted */ }

An invocation error that contains the function name, a mutable reference to the runtime, passed arguments, and the output type. This allows the caller to retry the function invocation using the Retriable trait.

Implementations

impl<'s, A: ArgumentReflection, B: ArgumentReflection, C: ArgumentReflection, Output: ReturnTypeReflection> InvokeErr3<'s, A, B, C, Output>[src]

pub fn new(
    err_msg: String,
    runtime: Rc<RefCell<Runtime>>,
    function_name: &'s str,
    a: A,
    b: B,
    c: C
) -> Self
[src]

Constructs a new invocation error.

Trait Implementations

impl<'s, A: ArgumentReflection, B: ArgumentReflection, C: ArgumentReflection, Output: ReturnTypeReflection> Debug for InvokeErr3<'s, A, B, C, Output>[src]

impl<'s, A: ArgumentReflection, B: ArgumentReflection, C: ArgumentReflection, Output: ReturnTypeReflection> Display for InvokeErr3<'s, A, B, C, Output>[src]

impl<'s, A: ArgumentReflection, B: ArgumentReflection, C: ArgumentReflection, Output: ReturnTypeReflection> Error for InvokeErr3<'s, A, B, C, Output>[src]

Auto Trait Implementations

impl<'s, A, B, C, Output> !RefUnwindSafe for InvokeErr3<'s, A, B, C, Output>

impl<'s, A, B, C, Output> !Send for InvokeErr3<'s, A, B, C, Output>

impl<'s, A, B, C, Output> !Sync for InvokeErr3<'s, A, B, C, Output>

impl<'s, A, B, C, Output> Unpin for InvokeErr3<'s, A, B, C, Output> where
    A: Unpin,
    B: Unpin,
    C: Unpin,
    Output: Unpin

impl<'s, A, B, C, Output> !UnwindSafe for InvokeErr3<'s, A, B, C, Output>

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> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,