pub struct GetRecoveryEmailAddress {
pub password: String,
}
Expand description
Returns a recovery email address that was previously set up. This method can be used to verify a password provided by the user
Fields§
§password: String
The password for the current user
Trait Implementations§
Source§impl Clone for GetRecoveryEmailAddress
impl Clone for GetRecoveryEmailAddress
Source§fn clone(&self) -> GetRecoveryEmailAddress
fn clone(&self) -> GetRecoveryEmailAddress
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 Debug for GetRecoveryEmailAddress
impl Debug for GetRecoveryEmailAddress
Source§impl<'de> Deserialize<'de> for GetRecoveryEmailAddress
impl<'de> Deserialize<'de> for GetRecoveryEmailAddress
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 Method for GetRecoveryEmailAddress
impl Method for GetRecoveryEmailAddress
Auto Trait Implementations§
impl Freeze for GetRecoveryEmailAddress
impl RefUnwindSafe for GetRecoveryEmailAddress
impl Send for GetRecoveryEmailAddress
impl Sync for GetRecoveryEmailAddress
impl Unpin for GetRecoveryEmailAddress
impl UnwindSafe for GetRecoveryEmailAddress
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