pub enum CertificateStatusType {
OCSP,
Unknown(u8),
}
Expand description
The CertificateStatusType
TLS protocol enum. Values in this enum are taken
from the various RFCs covering TLS, and are listed by IANA.
The Unknown
item is used when processing unrecognised ordinals.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CertificateStatusType
impl Clone for CertificateStatusType
Source§fn clone(&self) -> CertificateStatusType
fn clone(&self) -> CertificateStatusType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Codec for CertificateStatusType
impl Codec for CertificateStatusType
Source§impl Debug for CertificateStatusType
impl Debug for CertificateStatusType
Source§impl PartialEq for CertificateStatusType
impl PartialEq for CertificateStatusType
impl Copy for CertificateStatusType
impl Eq for CertificateStatusType
impl StructuralPartialEq for CertificateStatusType
Auto Trait Implementations§
impl Freeze for CertificateStatusType
impl RefUnwindSafe for CertificateStatusType
impl Send for CertificateStatusType
impl Sync for CertificateStatusType
impl Unpin for CertificateStatusType
impl UnwindSafe for CertificateStatusType
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