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