pub trait BackendSyscallError: Sized {
// Required methods
fn into_termination_reason(self) -> TerminationReason;
fn into_run_fallible_error(self) -> RunFallibleError;
}
Expand description
A trait for conversion of the externalities API error
to TerminationReason
and RunFallibleError
.