pub struct ForgotPasswordResponse {
pub change_password_id: Option<String>,
}
Expand description
ForgotPasswordResponse : Forgot password response object.
Fields§
§change_password_id: Option<String>
Implementations§
source§impl ForgotPasswordResponse
impl ForgotPasswordResponse
sourcepub fn new() -> ForgotPasswordResponse
pub fn new() -> ForgotPasswordResponse
Forgot password response object.
Trait Implementations§
source§impl Clone for ForgotPasswordResponse
impl Clone for ForgotPasswordResponse
source§fn clone(&self) -> ForgotPasswordResponse
fn clone(&self) -> ForgotPasswordResponse
Returns a copy 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 ForgotPasswordResponse
impl Debug for ForgotPasswordResponse
source§impl Default for ForgotPasswordResponse
impl Default for ForgotPasswordResponse
source§fn default() -> ForgotPasswordResponse
fn default() -> ForgotPasswordResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ForgotPasswordResponse
impl<'de> Deserialize<'de> for ForgotPasswordResponse
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 ForgotPasswordResponse
impl PartialEq for ForgotPasswordResponse
source§fn eq(&self, other: &ForgotPasswordResponse) -> bool
fn eq(&self, other: &ForgotPasswordResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ForgotPasswordResponse
impl Serialize for ForgotPasswordResponse
impl StructuralPartialEq for ForgotPasswordResponse
Auto Trait Implementations§
impl RefUnwindSafe for ForgotPasswordResponse
impl Send for ForgotPasswordResponse
impl Sync for ForgotPasswordResponse
impl Unpin for ForgotPasswordResponse
impl UnwindSafe for ForgotPasswordResponse
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