Struct rustls::server::UnparsedCertRevocationList
source · pub struct UnparsedCertRevocationList(pub Vec<u8>);
Expand description
An unparsed DER encoded Certificate Revocation List (CRL).
Tuple Fields§
§0: Vec<u8>
Implementations§
source§impl UnparsedCertRevocationList
impl UnparsedCertRevocationList
sourcepub fn parse(&self) -> Result<OwnedCertRevocationList, CertRevocationListError>
pub fn parse(&self) -> Result<OwnedCertRevocationList, CertRevocationListError>
Parse the CRL DER, yielding a webpki::CertRevocationList
or an error if the CRL
is malformed, or uses unsupported features.
Auto Trait Implementations§
impl Freeze for UnparsedCertRevocationList
impl RefUnwindSafe for UnparsedCertRevocationList
impl Send for UnparsedCertRevocationList
impl Sync for UnparsedCertRevocationList
impl Unpin for UnparsedCertRevocationList
impl UnwindSafe for UnparsedCertRevocationList
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