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