pub enum ConfigSubCommand {
Unknown,
EnableEnterpriseAttestation,
ToggleAlwaysUv,
SetMinPinLength(SetMinPinLengthParams),
}Available on (crate features
ctap2) and (crate features ctap2-management) only.Expand description
Subcommands for ConfigRequest.
Variants§
Unknown
EnableEnterpriseAttestation
Enables the enterprise attestation feature.
ToggleAlwaysUv
Toggles the always require user verification feature.
SetMinPinLength(SetMinPinLengthParams)
Sets a minimum PIN length policy.
See SetMinPinLengthParams for further details.
Implementations§
Trait Implementations§
Source§impl Clone for ConfigSubCommand
impl Clone for ConfigSubCommand
Source§fn clone(&self) -> ConfigSubCommand
fn clone(&self) -> ConfigSubCommand
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 ConfigSubCommand
impl Debug for ConfigSubCommand
Source§impl Default for ConfigSubCommand
impl Default for ConfigSubCommand
Source§fn default() -> ConfigSubCommand
fn default() -> ConfigSubCommand
Returns the “default value” for a type. Read more
Source§impl From<&ConfigSubCommand> for u8
impl From<&ConfigSubCommand> for u8
Source§fn from(c: &ConfigSubCommand) -> Self
fn from(c: &ConfigSubCommand) -> Self
Converts to this type from the input type.
Source§impl From<ConfigSubCommand> for Option<BTreeMap<Value, Value>>
impl From<ConfigSubCommand> for Option<BTreeMap<Value, Value>>
Source§fn from(c: ConfigSubCommand) -> Self
fn from(c: ConfigSubCommand) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ConfigSubCommand
impl PartialEq for ConfigSubCommand
impl Eq for ConfigSubCommand
impl StructuralPartialEq for ConfigSubCommand
Auto Trait Implementations§
impl Freeze for ConfigSubCommand
impl RefUnwindSafe for ConfigSubCommand
impl Send for ConfigSubCommand
impl Sync for ConfigSubCommand
impl Unpin for ConfigSubCommand
impl UnwindSafe for ConfigSubCommand
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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