pub type Result<T> = Result<T, CommonError>;Expand description
Common result type
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(CommonError),
}pub type Result<T> = Result<T, CommonError>;Common result type
pub enum Result<T> {
Ok(T),
Err(CommonError),
}