pub type Result<T> = Result<T, ServerError>;
Expand description
Result type for server errors.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ServerError),
}
pub type Result<T> = Result<T, ServerError>;
Result type for server errors.
pub enum Result<T> {
Ok(T),
Err(ServerError),
}