pub enum AuthenticationType {
Interactive,
KeyFile(PathBuf),
Password(String),
}
Variants§
Trait Implementations§
Source§impl Clone for AuthenticationType
impl Clone for AuthenticationType
Source§fn clone(&self) -> AuthenticationType
fn clone(&self) -> AuthenticationType
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 AuthenticationType
impl Debug for AuthenticationType
Source§impl PartialEq for AuthenticationType
impl PartialEq for AuthenticationType
impl Eq for AuthenticationType
impl StructuralPartialEq for AuthenticationType
Auto Trait Implementations§
impl Freeze for AuthenticationType
impl RefUnwindSafe for AuthenticationType
impl Send for AuthenticationType
impl Sync for AuthenticationType
impl Unpin for AuthenticationType
impl UnwindSafe for AuthenticationType
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