pub(crate) enum DistributionPointName<'a> {
NameRelativeToCrlIssuer,
FullName(DerIterator<'a, GeneralName<'a>>),
}
Expand description
A certificate revocation list (CRL) distribution point name, describing a source of CRL information for a given certificate as described in RFC 5280 section 4.2.3.131.
Variants§
NameRelativeToCrlIssuer
The distribution point name is a relative distinguished name, relative to the CRL issuer.
FullName(DerIterator<'a, GeneralName<'a>>)
The distribution point name is a sequence of GeneralName items.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DistributionPointName<'a>
impl<'a> RefUnwindSafe for DistributionPointName<'a>
impl<'a> Send for DistributionPointName<'a>
impl<'a> Sync for DistributionPointName<'a>
impl<'a> Unpin for DistributionPointName<'a>
impl<'a> UnwindSafe for DistributionPointName<'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