pub trait IntoHandlerError{
// Provided method
fn into_handler_error(self) -> HandlerError { ... }
}
Expand description
A trait with a default implementation that converts any application error
into a RpcHandlerError
. This allows the application code
to query and extract the specified application error.
Provided Methods§
fn into_handler_error(self) -> HandlerError
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.