pub struct SetResponseOverrideBitsParams {
pub authenticatorId: AuthenticatorId,
pub isBogusSignature: Option<bool>,
pub isBadUV: Option<bool>,
pub isBadUP: Option<bool>,
}Expand description
Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
Fields§
§authenticatorId: AuthenticatorId§isBogusSignature: Option<bool>If isBogusSignature is set, overrides the signature in the authenticator response to be zero. Defaults to false.
isBadUV: Option<bool>If isBadUV is set, overrides the UV bit in the flags in the authenticator response to be zero. Defaults to false.
isBadUP: Option<bool>If isBadUP is set, overrides the UP bit in the flags in the authenticator response to be zero. Defaults to false.
Implementations§
Trait Implementations§
Source§impl Clone for SetResponseOverrideBitsParams
impl Clone for SetResponseOverrideBitsParams
Source§fn clone(&self) -> SetResponseOverrideBitsParams
fn clone(&self) -> SetResponseOverrideBitsParams
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 Default for SetResponseOverrideBitsParams
impl Default for SetResponseOverrideBitsParams
Source§fn default() -> SetResponseOverrideBitsParams
fn default() -> SetResponseOverrideBitsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetResponseOverrideBitsParams
impl<'de> Deserialize<'de> for SetResponseOverrideBitsParams
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
Auto Trait Implementations§
impl Freeze for SetResponseOverrideBitsParams
impl RefUnwindSafe for SetResponseOverrideBitsParams
impl Send for SetResponseOverrideBitsParams
impl Sync for SetResponseOverrideBitsParams
impl Unpin for SetResponseOverrideBitsParams
impl UnsafeUnpin for SetResponseOverrideBitsParams
impl UnwindSafe for SetResponseOverrideBitsParams
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