Enum webpki::cert::EndEntityOrCa
source · pub enum EndEntityOrCa<'a> {
EndEntity,
Ca(&'a Cert<'a>),
}
Expand description
An enumeration indicating whether a Cert
is a leaf end-entity cert, or a linked
list node from the CA Cert
to a child Cert
it issued.
Variants§
EndEntity
The Cert
is a leaf end-entity certificate.
Ca(&'a Cert<'a>)
The Cert
is an issuer certificate, and issued the referenced child Cert
.
Auto Trait Implementations§
impl<'a> Freeze for EndEntityOrCa<'a>
impl<'a> RefUnwindSafe for EndEntityOrCa<'a>
impl<'a> Send for EndEntityOrCa<'a>
impl<'a> Sync for EndEntityOrCa<'a>
impl<'a> Unpin for EndEntityOrCa<'a>
impl<'a> UnwindSafe for EndEntityOrCa<'a>
Blanket Implementations§
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