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 str
Name of the key type.
short_name: &'static str
Short name of the key type.
is_cert: bool
Indicates whether the key type represents a certificate or not.
kind: KeyTypeKind
Kind of the key type.
plain: &'static str
The 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