pub trait SelfError {
    // Required method
    fn into_runtime_error(self) -> RuntimeError;
}
Expand description

This is a trait for the non-Downstream part of InvokeError We can’t use Into<RuntimeError> because we need RuntimeError not to implement it.

Required Methods§

Implementors§