Type Alias OpResult

Source
pub type OpResult<T> = Result<T, OpError>;

Aliased Type§

pub enum OpResult<T> {
    Ok(T),
    Err(OpError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(OpError)

Contains the error value