Type Alias CommonResult

Source
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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CommonError)

Contains the error value