IndexStoreResult

Type Alias IndexStoreResult 

Source
pub type IndexStoreResult<T> = Result<T, IndexStoreError>;
Expand description

Result of IndexStore operations.

Aliased Type§

pub enum IndexStoreResult<T> {
    Ok(T),
    Err(IndexStoreError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(IndexStoreError)

Contains the error value