Enum Item
#[non_exhaustive]pub enum Item {
X509Certificate(CertificateDer<'static>),
SubjectPublicKeyInfo(SubjectPublicKeyInfoDer<'static>),
Pkcs1Key(PrivatePkcs1KeyDer<'static>),
Pkcs8Key(PrivatePkcs8KeyDer<'static>),
Sec1Key(PrivateSec1KeyDer<'static>),
Crl(CertificateRevocationListDer<'static>),
Csr(CertificateSigningRequestDer<'static>),
}
Expand description
The contents of a single recognised block in a PEM file.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
X509Certificate(CertificateDer<'static>)
A DER-encoded x509 certificate.
Appears as “CERTIFICATE” in PEM files.
SubjectPublicKeyInfo(SubjectPublicKeyInfoDer<'static>)
A DER-encoded Subject Public Key Info; as specified in RFC 7468.
Appears as “PUBLIC KEY” in PEM files.
Pkcs1Key(PrivatePkcs1KeyDer<'static>)
A DER-encoded plaintext RSA private key; as specified in PKCS #1/RFC 3447
Appears as “RSA PRIVATE KEY” in PEM files.
Pkcs8Key(PrivatePkcs8KeyDer<'static>)
A DER-encoded plaintext private key; as specified in PKCS #8/RFC 5958
Appears as “PRIVATE KEY” in PEM files.
Sec1Key(PrivateSec1KeyDer<'static>)
A Sec1-encoded plaintext private key; as specified in RFC 5915
Appears as “EC PRIVATE KEY” in PEM files.
Crl(CertificateRevocationListDer<'static>)
A Certificate Revocation List; as specified in RFC 5280
Appears as “X509 CRL” in PEM files.
Csr(CertificateSigningRequestDer<'static>)
A Certificate Signing Request; as specified in RFC 2986
Appears as “CERTIFICATE REQUEST” in PEM files.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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
Mutably borrows from an owned value. Read more
§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> ⓘ
Converts
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> ⓘ
Converts
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>
Create a new
Policy
that returns Action::Follow
only if self
and other
return
Action::Follow
. Read more