pub struct AuthenticationCodeTypeSmsWord {
pub first_letter: String,
}
Expand description
An authentication code is a word delivered via an SMS message to the specified phone number; non-official applications may not receive this type of code
Fields§
§first_letter: String
The first letters of the word if known
Trait Implementations§
Source§impl Clone for AuthenticationCodeTypeSmsWord
impl Clone for AuthenticationCodeTypeSmsWord
Source§fn clone(&self) -> AuthenticationCodeTypeSmsWord
fn clone(&self) -> AuthenticationCodeTypeSmsWord
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 AuthenticationCodeTypeSmsWord
impl Default for AuthenticationCodeTypeSmsWord
Source§fn default() -> AuthenticationCodeTypeSmsWord
fn default() -> AuthenticationCodeTypeSmsWord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticationCodeTypeSmsWord
impl<'de> Deserialize<'de> for AuthenticationCodeTypeSmsWord
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 AuthenticationCodeTypeSmsWord
impl PartialEq for AuthenticationCodeTypeSmsWord
Source§fn eq(&self, other: &AuthenticationCodeTypeSmsWord) -> bool
fn eq(&self, other: &AuthenticationCodeTypeSmsWord) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuthenticationCodeTypeSmsWord
Auto Trait Implementations§
impl Freeze for AuthenticationCodeTypeSmsWord
impl RefUnwindSafe for AuthenticationCodeTypeSmsWord
impl Send for AuthenticationCodeTypeSmsWord
impl Sync for AuthenticationCodeTypeSmsWord
impl Unpin for AuthenticationCodeTypeSmsWord
impl UnwindSafe for AuthenticationCodeTypeSmsWord
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