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),
}
pub type Result<T, E = CryptoStoreError> = Result<T, E>;
A CryptoStore
specific result type.
enum Result<T, E = CryptoStoreError> {
Ok(T),
Err(E),
}