Skip to main content

StoreResult

Type Alias StoreResult 

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

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StoreError<E>)

Contains the error value