pub trait InvocationErrorIntrospect {
    // Required method
    fn invocation_error_kind(&self, err: &Error) -> InvocationErrorKind;
}
Expand description

Implementations of this trait are able to introspect an error returned by wRPC invocations

Required Methods§

source

fn invocation_error_kind(&self, err: &Error) -> InvocationErrorKind

Classify InvocationErrorKind of an error returned by wRPC

Implementors§