pub struct UserCredentials<'a> {
pub login: &'a str,
pub password: &'a str,
}Expand description
Represents user credentials for the http://hh.ru website
Fields§
§login: &'a str§password: &'a strAuto Trait Implementations§
impl<'a> Freeze for UserCredentials<'a>
impl<'a> RefUnwindSafe for UserCredentials<'a>
impl<'a> Send for UserCredentials<'a>
impl<'a> Sync for UserCredentials<'a>
impl<'a> Unpin for UserCredentials<'a>
impl<'a> UnwindSafe for UserCredentials<'a>
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