#[non_exhaustive]#[repr(u8)]pub enum PinV1Subcommand {
GetRetries = 1,
GetKeyAgreement = 2,
SetPin = 3,
ChangePin = 4,
GetPinToken = 5,
GetPinUvAuthTokenUsingUvWithPermissions = 6,
GetUVRetries = 7,
GetPinUvAuthTokenUsingPinWithPermissions = 9,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GetRetries = 1
GetKeyAgreement = 2
SetPin = 3
ChangePin = 4
GetPinToken = 5
GetPinUvAuthTokenUsingUvWithPermissions = 6
GetUVRetries = 7
GetPinUvAuthTokenUsingPinWithPermissions = 9
Trait Implementations§
Source§impl Clone for PinV1Subcommand
impl Clone for PinV1Subcommand
Source§fn clone(&self) -> PinV1Subcommand
fn clone(&self) -> PinV1Subcommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PinV1Subcommand
impl Debug for PinV1Subcommand
Source§impl<'de> Deserialize<'de> for PinV1Subcommand
impl<'de> Deserialize<'de> for PinV1Subcommand
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PinV1Subcommand
impl PartialEq for PinV1Subcommand
Source§impl Serialize for PinV1Subcommand
impl Serialize for PinV1Subcommand
impl Eq for PinV1Subcommand
impl StructuralPartialEq for PinV1Subcommand
Auto Trait Implementations§
impl Freeze for PinV1Subcommand
impl RefUnwindSafe for PinV1Subcommand
impl Send for PinV1Subcommand
impl Sync for PinV1Subcommand
impl Unpin for PinV1Subcommand
impl UnwindSafe for PinV1Subcommand
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