Trait rpc_router::IntoRpcHandlerError
source · pub trait IntoRpcHandlerError{
// Provided method
fn into_handler_error(self) -> RpcHandlerError { ... }
}
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) -> RpcHandlerError
Object Safety§
This trait is not object safe.