Type Alias StoreResult

Source
pub type StoreResult<T> = Result<T, StoreError>;
Expand description

Result returning the crate StoreError type.

Aliased Type§

pub enum StoreResult<T> {
    Ok(T),
    Err(StoreError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StoreError)

Contains the error value