pub type Result<T> = Result<T, ServerError>;Expand description
Server-wide result type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ServerError),
}pub type Result<T> = Result<T, ServerError>;Server-wide result type.
pub enum Result<T> {
Ok(T),
Err(ServerError),
}