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