pub enum AlgCategory {
Kex,
Cipher,
Mac,
HostKey,
}Expand description
Algorithm category — the four ssh_config(5) directive families
Gitway plumbs through to russh. Matches the four CLI flags
--kex / --ciphers / --macs / --host-key-algorithms.
Variants§
Kex
KexAlgorithms directive / --kex flag.
Cipher
Ciphers directive / --ciphers flag.
Mac
MACs directive / --macs flag.
HostKey
HostKeyAlgorithms directive / --host-key-algorithms flag.
Implementations§
Trait Implementations§
Source§impl Clone for AlgCategory
impl Clone for AlgCategory
Source§fn clone(&self) -> AlgCategory
fn clone(&self) -> AlgCategory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AlgCategory
impl Debug for AlgCategory
Source§impl PartialEq for AlgCategory
impl PartialEq for AlgCategory
Source§fn eq(&self, other: &AlgCategory) -> bool
fn eq(&self, other: &AlgCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AlgCategory
impl Eq for AlgCategory
impl StructuralPartialEq for AlgCategory
Auto Trait Implementations§
impl Freeze for AlgCategory
impl RefUnwindSafe for AlgCategory
impl Send for AlgCategory
impl Sync for AlgCategory
impl Unpin for AlgCategory
impl UnsafeUnpin for AlgCategory
impl UnwindSafe for AlgCategory
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