pub struct LoginProfile {
pub user_name: String,
pub created_at: DateTime<Utc>,
pub password_reset_required: bool,
}Fields§
§user_name: String§created_at: DateTime<Utc>§password_reset_required: boolTrait Implementations§
Source§impl Clone for LoginProfile
impl Clone for LoginProfile
Source§fn clone(&self) -> LoginProfile
fn clone(&self) -> LoginProfile
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 moreAuto Trait Implementations§
impl Freeze for LoginProfile
impl RefUnwindSafe for LoginProfile
impl Send for LoginProfile
impl Sync for LoginProfile
impl Unpin for LoginProfile
impl UnsafeUnpin for LoginProfile
impl UnwindSafe for LoginProfile
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