CellResult

Type Alias CellResult 

Source
pub type CellResult<T> = Result<T, CellError>;

Aliased Type§

pub enum CellResult<T> {
    Ok(T),
    Err(CellError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CellError)

Contains the error value