pub struct UserPassPair {
pub username: String,
pub password: String,
}Fields§
§username: String§password: StringTrait Implementations§
Source§impl Clone for UserPassPair
impl Clone for UserPassPair
Source§fn clone(&self) -> UserPassPair
fn clone(&self) -> UserPassPair
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 UserPassPair
impl Debug for UserPassPair
Source§impl Hash for UserPassPair
impl Hash for UserPassPair
Source§impl Ord for UserPassPair
impl Ord for UserPassPair
Source§fn cmp(&self, other: &UserPassPair) -> Ordering
fn cmp(&self, other: &UserPassPair) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for UserPassPair
impl PartialEq for UserPassPair
Source§impl PartialOrd for UserPassPair
impl PartialOrd for UserPassPair
impl Eq for UserPassPair
impl StructuralPartialEq for UserPassPair
Auto Trait Implementations§
impl Freeze for UserPassPair
impl RefUnwindSafe for UserPassPair
impl Send for UserPassPair
impl Sync for UserPassPair
impl Unpin for UserPassPair
impl UnsafeUnpin for UserPassPair
impl UnwindSafe for UserPassPair
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