pub type Result<T, E = EventCacheStoreError> = Result<T, E>;
Expand description
An EventCacheStore
specific result type.
Aliased Type§
enum Result<T, E = EventCacheStoreError> {
Ok(T),
Err(E),
}
pub type Result<T, E = EventCacheStoreError> = Result<T, E>;
An EventCacheStore
specific result type.
enum Result<T, E = EventCacheStoreError> {
Ok(T),
Err(E),
}