Skip to main content

CacheStoreResult

Type Alias CacheStoreResult 

Source
pub type CacheStoreResult<T> = Result<T, CacheStoreError>;
Expand description

Result type for cache store operations.

Aliased Type§

pub enum CacheStoreResult<T> {
    Ok(T),
    Err(CacheStoreError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CacheStoreError)

Contains the error value