[][src]Struct mun_runtime::InvokeErr12

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, D: ArgumentReflection, E: ArgumentReflection, F: ArgumentReflection, G: ArgumentReflection, H: ArgumentReflection, I: ArgumentReflection, J: ArgumentReflection, K: ArgumentReflection, L: ArgumentReflection, Output: ReturnTypeReflection> InvokeErr12<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output>[src]

pub fn new(
    err_msg: String,
    runtime: Rc<RefCell<Runtime>>,
    function_name: &'s str,
    a: A,
    b: B,
    c: C,
    d: D,
    e: E,
    f: F,
    g: G,
    h: H,
    i: I,
    j: J,
    k: K,
    l: L
) -> Self
[src]

Constructs a new invocation error.

Trait Implementations

impl<'s, A: ArgumentReflection, B: ArgumentReflection, C: ArgumentReflection, D: ArgumentReflection, E: ArgumentReflection, F: ArgumentReflection, G: ArgumentReflection, H: ArgumentReflection, I: ArgumentReflection, J: ArgumentReflection, K: ArgumentReflection, L: ArgumentReflection, Output: ReturnTypeReflection> Debug for InvokeErr12<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output>[src]

impl<'s, A: ArgumentReflection, B: ArgumentReflection, C: ArgumentReflection, D: ArgumentReflection, E: ArgumentReflection, F: ArgumentReflection, G: ArgumentReflection, H: ArgumentReflection, I: ArgumentReflection, J: ArgumentReflection, K: ArgumentReflection, L: ArgumentReflection, Output: ReturnTypeReflection> Display for InvokeErr12<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output>[src]

impl<'s, A: ArgumentReflection, B: ArgumentReflection, C: ArgumentReflection, D: ArgumentReflection, E: ArgumentReflection, F: ArgumentReflection, G: ArgumentReflection, H: ArgumentReflection, I: ArgumentReflection, J: ArgumentReflection, K: ArgumentReflection, L: ArgumentReflection, Output: ReturnTypeReflection> Error for InvokeErr12<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output>[src]

Auto Trait Implementations

impl<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output> !RefUnwindSafe for InvokeErr12<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output>

impl<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output> !Send for InvokeErr12<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output>

impl<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output> !Sync for InvokeErr12<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output>

impl<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output> Unpin for InvokeErr12<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output> where
    A: Unpin,
    B: Unpin,
    C: Unpin,
    D: Unpin,
    E: Unpin,
    F: Unpin,
    G: Unpin,
    H: Unpin,
    I: Unpin,
    J: Unpin,
    K: Unpin,
    L: Unpin,
    Output: Unpin

impl<'s, A, B, C, D, E, F, G, H, I, J, K, L, Output> !UnwindSafe for InvokeErr12<'s, A, B, C, D, E, F, G, H, I, J, K, L, 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>,