pub enum MethodKind {
None,
Password,
PublicKey,
HostBased,
KeyboardInteractive,
}Variants§
Trait Implementations§
Source§impl Clone for MethodKind
impl Clone for MethodKind
Source§fn clone(&self) -> MethodKind
fn clone(&self) -> MethodKind
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 MethodKind
impl Debug for MethodKind
Source§impl From<&MethodKind> for &'static str
impl From<&MethodKind> for &'static str
Source§fn from(value: &MethodKind) -> Self
fn from(value: &MethodKind) -> Self
Converts to this type from the input type.
Source§impl From<&MethodKind> for String
impl From<&MethodKind> for String
Source§fn from(value: &MethodKind) -> Self
fn from(value: &MethodKind) -> Self
Converts to this type from the input type.
Source§impl FromStr for MethodKind
impl FromStr for MethodKind
Source§impl PartialEq for MethodKind
impl PartialEq for MethodKind
impl Copy for MethodKind
impl Eq for MethodKind
impl StructuralPartialEq for MethodKind
Auto Trait Implementations§
impl Freeze for MethodKind
impl RefUnwindSafe for MethodKind
impl Send for MethodKind
impl Sync for MethodKind
impl Unpin for MethodKind
impl UnwindSafe for MethodKind
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