pub struct AuthenticatorEmailChallengeResponseRequest {
pub component: Option<String>,
pub code: Option<i32>,
pub email: Option<String>,
}
Expand description
AuthenticatorEmailChallengeResponseRequest : Authenticator Email Challenge response, device is set by get_response_instance
Fields§
§component: Option<String>
§code: Option<i32>
§email: Option<String>
Implementations§
Source§impl AuthenticatorEmailChallengeResponseRequest
impl AuthenticatorEmailChallengeResponseRequest
Sourcepub fn new() -> AuthenticatorEmailChallengeResponseRequest
pub fn new() -> AuthenticatorEmailChallengeResponseRequest
Authenticator Email Challenge response, device is set by get_response_instance
Trait Implementations§
Source§impl Clone for AuthenticatorEmailChallengeResponseRequest
impl Clone for AuthenticatorEmailChallengeResponseRequest
Source§fn clone(&self) -> AuthenticatorEmailChallengeResponseRequest
fn clone(&self) -> AuthenticatorEmailChallengeResponseRequest
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 AuthenticatorEmailChallengeResponseRequest
impl Default for AuthenticatorEmailChallengeResponseRequest
Source§fn default() -> AuthenticatorEmailChallengeResponseRequest
fn default() -> AuthenticatorEmailChallengeResponseRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticatorEmailChallengeResponseRequest
impl<'de> Deserialize<'de> for AuthenticatorEmailChallengeResponseRequest
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 AuthenticatorEmailChallengeResponseRequest
impl PartialEq for AuthenticatorEmailChallengeResponseRequest
Source§fn eq(&self, other: &AuthenticatorEmailChallengeResponseRequest) -> bool
fn eq(&self, other: &AuthenticatorEmailChallengeResponseRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuthenticatorEmailChallengeResponseRequest
Auto Trait Implementations§
impl Freeze for AuthenticatorEmailChallengeResponseRequest
impl RefUnwindSafe for AuthenticatorEmailChallengeResponseRequest
impl Send for AuthenticatorEmailChallengeResponseRequest
impl Sync for AuthenticatorEmailChallengeResponseRequest
impl Unpin for AuthenticatorEmailChallengeResponseRequest
impl UnwindSafe for AuthenticatorEmailChallengeResponseRequest
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