pub type KeystoreEntryResult<T> = Result<T, UnrecognizedEntryError>;Available on crate feature
keymgr only.Expand description
A type alias returned by Keystore::list.
Aliased Type§
pub enum KeystoreEntryResult<T> {
Ok(T),
Err(UnrecognizedEntryError),
}