pub type KeyStorageResult<T> = Result<T, SingleStructError<KeyStorageErrorKind>>;Expand description
Result of key storage operations.
Aliased Type§
pub enum KeyStorageResult<T> {
Ok(T),
Err(SingleStructError<KeyStorageErrorKind>),
}Variants§
Ok(T)
Contains the success value
Err(SingleStructError<KeyStorageErrorKind>)
Contains the error value