Enum SectionKind
#[non_exhaustive]pub enum SectionKind {
Certificate,
PublicKey,
RsaPrivateKey,
PrivateKey,
EcPrivateKey,
Crl,
Csr,
EchConfigList,
}
Expand description
A single recognised section in a PEM file.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Certificate
A DER-encoded x509 certificate.
Appears as “CERTIFICATE” in PEM files.
PublicKey
A DER-encoded Subject Public Key Info; as specified in RFC 7468.
Appears as “PUBLIC KEY” in PEM files.
RsaPrivateKey
A DER-encoded plaintext RSA private key; as specified in PKCS #1/RFC 3447
Appears as “RSA PRIVATE KEY” in PEM files.
PrivateKey
A DER-encoded plaintext private key; as specified in PKCS #8/RFC 5958
Appears as “PRIVATE KEY” in PEM files.
EcPrivateKey
A Sec1-encoded plaintext private key; as specified in RFC 5915
Appears as “EC PRIVATE KEY” in PEM files.
Crl
A Certificate Revocation List; as specified in RFC 5280
Appears as “X509 CRL” in PEM files.
Csr
A Certificate Signing Request; as specified in RFC 2986
Appears as “CERTIFICATE REQUEST” in PEM files.
EchConfigList
An EchConfigList structure, as specified in https://www.ietf.org/archive/id/draft-farrell-tls-pemesni-05.html.
Appears as “ECHCONFIG” in PEM files.
Trait Implementations§
§impl Clone for SectionKind
impl Clone for SectionKind
§fn clone(&self) -> SectionKind
fn clone(&self) -> SectionKind
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for SectionKind
impl Debug for SectionKind
§impl PartialEq for SectionKind
impl PartialEq for SectionKind
§impl TryFrom<&[u8]> for SectionKind
impl TryFrom<&[u8]> for SectionKind
impl Copy for SectionKind
impl StructuralPartialEq for SectionKind
Auto Trait Implementations§
impl Freeze for SectionKind
impl RefUnwindSafe for SectionKind
impl Send for SectionKind
impl Sync for SectionKind
impl Unpin for SectionKind
impl UnwindSafe for SectionKind
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Policy
that returns Action::Follow
only if self
and other
return
Action::Follow
. Read more