CellstateResult

Type Alias CellstateResult 

Source
pub type CellstateResult<T> = Result<T, CellstateError>;
Expand description

Result type alias for CELLSTATE operations.

Aliased Type§

pub enum CellstateResult<T> {
    Ok(T),
    Err(CellstateError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CellstateError)

Contains the error value