pub struct CrlIssuingDistributionPoint {
pub distribution_point: CrlDistributionPoint,
pub scope: Option<CrlScope>,
}
Expand description
A certificate revocation list (CRL) issuing distribution point, to be included in a CRL’s issuing distribution point extension.
Fields§
§distribution_point: CrlDistributionPoint
The CRL’s distribution point, containing a sequence of URIs the CRL can be retrieved from.
scope: Option<CrlScope>
An optional description of the CRL’s scope. If omitted, the CRL may contain both user certs and CA certs.
Auto Trait Implementations§
impl Freeze for CrlIssuingDistributionPoint
impl RefUnwindSafe for CrlIssuingDistributionPoint
impl Send for CrlIssuingDistributionPoint
impl Sync for CrlIssuingDistributionPoint
impl Unpin for CrlIssuingDistributionPoint
impl UnwindSafe for CrlIssuingDistributionPoint
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