pub struct ResendCodeReasonVerificationFailed {
pub error_message: String,
}Expand description
The code is re-sent, because device verification has failed
Fields§
§error_message: StringCause of the verification failure, for example, “PLAY_SERVICES_NOT_AVAILABLE”, “APNS_RECEIVE_TIMEOUT”, or “APNS_INIT_FAILED”
Trait Implementations§
Source§impl Clone for ResendCodeReasonVerificationFailed
impl Clone for ResendCodeReasonVerificationFailed
Source§fn clone(&self) -> ResendCodeReasonVerificationFailed
fn clone(&self) -> ResendCodeReasonVerificationFailed
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 ResendCodeReasonVerificationFailed
impl Default for ResendCodeReasonVerificationFailed
Source§fn default() -> ResendCodeReasonVerificationFailed
fn default() -> ResendCodeReasonVerificationFailed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResendCodeReasonVerificationFailed
impl<'de> Deserialize<'de> for ResendCodeReasonVerificationFailed
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 ResendCodeReasonVerificationFailed
impl PartialEq for ResendCodeReasonVerificationFailed
Source§fn eq(&self, other: &ResendCodeReasonVerificationFailed) -> bool
fn eq(&self, other: &ResendCodeReasonVerificationFailed) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResendCodeReasonVerificationFailed
Auto Trait Implementations§
impl Freeze for ResendCodeReasonVerificationFailed
impl RefUnwindSafe for ResendCodeReasonVerificationFailed
impl Send for ResendCodeReasonVerificationFailed
impl Sync for ResendCodeReasonVerificationFailed
impl Unpin for ResendCodeReasonVerificationFailed
impl UnsafeUnpin for ResendCodeReasonVerificationFailed
impl UnwindSafe for ResendCodeReasonVerificationFailed
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