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