Enum ssh_key::certificate::Field
source · [−]pub enum Field {
Show 13 variants
PublicKey,
Nonce,
Serial,
Type,
KeyId,
ValidPrincipals,
ValidAfter,
ValidBefore,
CriticalOptions,
Extensions,
SignatureKey,
Signature,
Comment,
}
Available on crate feature
alloc
only.Expand description
Certificate fields.
This type is primarily used by the certificate builder for reporting errors in certificates.
Variants
PublicKey
Subject public key
Nonce
Nonce
Serial
Serial number
Type
Certificate type: user or host
KeyId
Key ID
ValidPrincipals
Valid principals
ValidAfter
Valid after (Unix time)
ValidBefore
Valid before (Unix time)
CriticalOptions
Critical options
Extensions
Extensions
SignatureKey
Signature key (i.e. CA key)
Signature
Signature
Comment
Comment
Implementations
Trait Implementations
sourceimpl Ord for Field
impl Ord for Field
1.21.0 · sourceconst fn max(self, other: Self) -> Selfwhere
Self: Sized,
const fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Selfwhere
Self: Sized,
const fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<Field> for Field
impl PartialOrd<Field> for Field
sourcefn partial_cmp(&self, other: &Field) -> Option<Ordering>
fn partial_cmp(&self, other: &Field) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Field
impl Eq for Field
impl StructuralEq for Field
impl StructuralPartialEq for Field
Auto Trait Implementations
impl RefUnwindSafe for Field
impl Send for Field
impl Sync for Field
impl Unpin for Field
impl UnwindSafe for Field
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more