pub type StorageResult<V> = Result<V, StorageError>;
Expand description

A type alias that maps to std::result::Result<T, StorageError>.

Aliased Type§

enum StorageResult<V> {
    Ok(V),
    Err(StorageError),
}

Variants§

§1.0.0

Ok(V)

Contains the success value

§1.0.0

Err(StorageError)

Contains the error value