pub type StoreResult<T> = Result<T, StoreError>;Expand description
Result type for store operations.
Aliased Type§
pub enum StoreResult<T> {
Ok(T),
Err(StoreError),
}pub type StoreResult<T> = Result<T, StoreError>;Result type for store operations.
pub enum StoreResult<T> {
Ok(T),
Err(StoreError),
}