pub type ServerResult<T> = Result<T, ServerError>;Expand description
Result type returning a ServerError, used for
errors that originate on and are reported by the RPC server.
Aliased Type§
pub enum ServerResult<T> {
Ok(T),
Err(ServerError),
}