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