Enum webpki::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
.