pub type ServerResult<T> = Result<T, ServerError>;
Expand description
The result of server-related operations.
Aliased Type§
pub enum ServerResult<T> {
Ok(T),
Err(ServerError),
}
pub type ServerResult<T> = Result<T, ServerError>;
The result of server-related operations.
pub enum ServerResult<T> {
Ok(T),
Err(ServerError),
}