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