Type Alias matrix_sdk_base::store::Result
source · pub type Result<T, E = StoreError> = Result<T, E>;
Expand description
A StateStore
specific result type.
Aliased Type§
enum Result<T, E = StoreError> {
Ok(T),
Err(E),
}
pub type Result<T, E = StoreError> = Result<T, E>;
A StateStore
specific result type.
enum Result<T, E = StoreError> {
Ok(T),
Err(E),
}