#[non_exhaustive]pub enum CertificateType {
X509,
RawPublicKey,
Unknown(u8),
}
Expand description
The CertificateType
enum sent in the cert_type extensions.
Values in this enum are taken from the various RFCs covering TLS, and are listed by IANA.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for CertificateType
impl Clone for CertificateType
Source§fn clone(&self) -> CertificateType
fn clone(&self) -> CertificateType
Returns a duplicate 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 Debug for CertificateType
impl Debug for CertificateType
Source§impl From<CertificateType> for u8
impl From<CertificateType> for u8
Source§fn from(value: CertificateType) -> Self
fn from(value: CertificateType) -> Self
Converts to this type from the input type.
Source§impl From<u8> for CertificateType
impl From<u8> for CertificateType
Source§impl PartialEq for CertificateType
impl PartialEq for CertificateType
impl Copy for CertificateType
impl Eq for CertificateType
impl StructuralPartialEq for CertificateType
Auto Trait Implementations§
impl Freeze for CertificateType
impl RefUnwindSafe for CertificateType
impl Send for CertificateType
impl Sync for CertificateType
impl Unpin for CertificateType
impl UnwindSafe for CertificateType
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