pub(crate) struct CrlDistributionPoint<'a> {
distribution_point: Option<Input<'a>>,
pub(crate) reasons: Option<BitStringFlags<'a>>,
pub(crate) crl_issuer: Option<Input<'a>>,
}
Expand description
A certificate revocation list (CRL) distribution point, describing a source of CRL information for a given certificate as described in RFC 5280 section 4.2.3.131.
Fields§
§distribution_point: Option<Input<'a>>
distributionPoint describes the location of CRL information.
reasons: Option<BitStringFlags<'a>>
reasons holds a bit flag set of certificate revocation reasons associated with the CRL distribution point.
crl_issuer: Option<Input<'a>>
when the CRL issuer is not the certificate issuer, crl_issuer identifies the issuer of the CRL.
Implementations§
Source§impl<'a> CrlDistributionPoint<'a>
impl<'a> CrlDistributionPoint<'a>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for CrlDistributionPoint<'a>
impl<'a> RefUnwindSafe for CrlDistributionPoint<'a>
impl<'a> Send for CrlDistributionPoint<'a>
impl<'a> Sync for CrlDistributionPoint<'a>
impl<'a> Unpin for CrlDistributionPoint<'a>
impl<'a> UnwindSafe for CrlDistributionPoint<'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