pub struct Authenticator {
pub login: String,
pub account: String,
pub password: String,
}
Expand description
Authenticators for host.
Fields§
§login: String
Identify a user on the remote machine.
account: String
Supply an additional account password.
password: String
Supply a password
Implementations§
Trait Implementations§
Source§impl Clone for Authenticator
impl Clone for Authenticator
Source§fn clone(&self) -> Authenticator
fn clone(&self) -> Authenticator
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 Authenticator
impl Debug for Authenticator
Source§impl Default for Authenticator
impl Default for Authenticator
Source§fn default() -> Authenticator
fn default() -> Authenticator
Returns the “default value” for a type. Read more
Source§impl PartialEq for Authenticator
impl PartialEq for Authenticator
impl Eq for Authenticator
impl StructuralPartialEq for Authenticator
Auto Trait Implementations§
impl Freeze for Authenticator
impl RefUnwindSafe for Authenticator
impl Send for Authenticator
impl Sync for Authenticator
impl Unpin for Authenticator
impl UnwindSafe for Authenticator
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