Struct rustls::server::UnparsedCertRevocationList
source · [−]Expand description
An unparsed DER encoded Certificate Revocation List (CRL).
Tuple Fields
0: Vec<u8>
Implementations
sourceimpl 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 RefUnwindSafe for UnparsedCertRevocationList
impl Send for UnparsedCertRevocationList
impl Sync for UnparsedCertRevocationList
impl Unpin for UnparsedCertRevocationList
impl UnwindSafe for UnparsedCertRevocationList
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more