pub struct KeyType {
pub name: &'static str,
pub short_name: &'static str,
pub is_cert: bool,
pub kind: KeyTypeKind,
pub plain: &'static str,
}Expand description
KeyType represents the type of an OpenSSH key.
Fields
name: &'static strName of the key type.
short_name: &'static strShort name of the key type.
is_cert: boolIndicates whether the key type represents a certificate or not.
kind: KeyTypeKindKind of the key type.
plain: &'static strThe cert-less equivalent to a certified key type.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for KeyType
impl UnwindSafe for KeyType
Blanket Implementations
Mutably borrows from an owned value. Read more