StateResult

Type Alias StateResult 

Source
pub type StateResult<T> = Result<T, StateError>;

Aliased Type§

pub enum StateResult<T> {
    Ok(T),
    Err(StateError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StateError)

Contains the error value