pub struct EmailAddressResetStatePending {
pub reset_in: i32,
}
Expand description
Email address reset has already been requested. Call resetAuthenticationEmailAddress to check whether immediate reset is possible
Fields§
§reset_in: i32
Left time before the email address will be reset, in seconds. updateAuthorizationState is not sent when this field changes
Trait Implementations§
Source§impl Clone for EmailAddressResetStatePending
impl Clone for EmailAddressResetStatePending
Source§fn clone(&self) -> EmailAddressResetStatePending
fn clone(&self) -> EmailAddressResetStatePending
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 EmailAddressResetStatePending
impl Default for EmailAddressResetStatePending
Source§fn default() -> EmailAddressResetStatePending
fn default() -> EmailAddressResetStatePending
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmailAddressResetStatePending
impl<'de> Deserialize<'de> for EmailAddressResetStatePending
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 EmailAddressResetStatePending
impl PartialEq for EmailAddressResetStatePending
Source§fn eq(&self, other: &EmailAddressResetStatePending) -> bool
fn eq(&self, other: &EmailAddressResetStatePending) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for EmailAddressResetStatePending
Auto Trait Implementations§
impl Freeze for EmailAddressResetStatePending
impl RefUnwindSafe for EmailAddressResetStatePending
impl Send for EmailAddressResetStatePending
impl Sync for EmailAddressResetStatePending
impl Unpin for EmailAddressResetStatePending
impl UnwindSafe for EmailAddressResetStatePending
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