pub enum KeyStatus {
NotPresent,
Generated,
Imported,
Unknown(u8),
}Expand description
KeyStatus is contained in KeyInformation.
It encodes if key material on a card was imported or generated on the card.
Variants§
Trait Implementations§
impl Copy for KeyStatus
impl Eq for KeyStatus
impl StructuralPartialEq for KeyStatus
Auto Trait Implementations§
impl Freeze for KeyStatus
impl RefUnwindSafe for KeyStatus
impl Send for KeyStatus
impl Sync for KeyStatus
impl Unpin for KeyStatus
impl UnwindSafe for KeyStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more