Struct rive_models::data::PasswordResetData
source · pub struct PasswordResetData {
pub token: String,
pub password: String,
pub remove_sessions: bool,
}Expand description
Password reset data
Fields§
§token: StringReset token
password: StringNew password
remove_sessions: boolWhether to logout all sessions
Trait Implementations§
source§impl Clone for PasswordResetData
impl Clone for PasswordResetData
source§fn clone(&self) -> PasswordResetData
fn clone(&self) -> PasswordResetData
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 PasswordResetData
impl Debug for PasswordResetData
Auto Trait Implementations§
impl RefUnwindSafe for PasswordResetData
impl Send for PasswordResetData
impl Sync for PasswordResetData
impl Unpin for PasswordResetData
impl UnwindSafe for PasswordResetData
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