pub type ServerResult<T> = Result<T, ServerError>;Expand description
A type alias for a Result that returns a ServerError on failure.
This is commonly used throughout the server’s public-facing API.
Aliased Type§
pub enum ServerResult<T> {
Ok(T),
Err(ServerError),
}