pub struct UniversalTwoFactor {
pub app_id: Option<String>,
}Expand description
Security key information specific to the U2F protocol.
This type is not used in any activity, and only used as part of another schema.
Fields§
§app_id: Option<String>Application ID for the U2F protocol.
Trait Implementations§
Source§impl Clone for UniversalTwoFactor
impl Clone for UniversalTwoFactor
Source§fn clone(&self) -> UniversalTwoFactor
fn clone(&self) -> UniversalTwoFactor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UniversalTwoFactor
impl Debug for UniversalTwoFactor
Source§impl Default for UniversalTwoFactor
impl Default for UniversalTwoFactor
Source§fn default() -> UniversalTwoFactor
fn default() -> UniversalTwoFactor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UniversalTwoFactor
impl<'de> Deserialize<'de> for UniversalTwoFactor
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
impl Part for UniversalTwoFactor
Auto Trait Implementations§
impl Freeze for UniversalTwoFactor
impl RefUnwindSafe for UniversalTwoFactor
impl Send for UniversalTwoFactor
impl Sync for UniversalTwoFactor
impl Unpin for UniversalTwoFactor
impl UnsafeUnpin for UniversalTwoFactor
impl UnwindSafe for UniversalTwoFactor
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