pub struct PasswordForgotInput {
pub email: String,
}Fields§
§email: StringImplementations§
Source§impl PasswordForgotInput
impl PasswordForgotInput
pub fn new(email: String) -> PasswordForgotInput
Trait Implementations§
Source§impl Clone for PasswordForgotInput
impl Clone for PasswordForgotInput
Source§fn clone(&self) -> PasswordForgotInput
fn clone(&self) -> PasswordForgotInput
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 PasswordForgotInput
impl Debug for PasswordForgotInput
Source§impl Default for PasswordForgotInput
impl Default for PasswordForgotInput
Source§fn default() -> PasswordForgotInput
fn default() -> PasswordForgotInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PasswordForgotInput
impl<'de> Deserialize<'de> for PasswordForgotInput
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 PasswordForgotInput
impl PartialEq for PasswordForgotInput
Source§impl Serialize for PasswordForgotInput
impl Serialize for PasswordForgotInput
impl StructuralPartialEq for PasswordForgotInput
Auto Trait Implementations§
impl Freeze for PasswordForgotInput
impl RefUnwindSafe for PasswordForgotInput
impl Send for PasswordForgotInput
impl Sync for PasswordForgotInput
impl Unpin for PasswordForgotInput
impl UnwindSafe for PasswordForgotInput
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