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