pub struct CertificateType(pub 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.
Protocol enumerations in rustls are represented with a struct, which contains the numeric value used on the wire (in this case, u8). Each known value has a named const item on this type – this can be used in a match arm or to access the numeric value.
If a known value does not exist for a value you need, you can simply create it locally:
pub const MyValue: CertificateType = CertificateType(123);The Debug impl for this type also looks up and pretty-prints
known named items. Unknown values are formatted in hexadecimal.
Tuple Fields§
§0: u8Implementations§
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 Default for CertificateType
impl Default for CertificateType
Source§impl From<CertificateType> for u8
impl From<CertificateType> for u8
Source§fn from(x: CertificateType) -> Self
fn from(x: CertificateType) -> Self
Converts to this type from the input type.
Source§impl From<u8> for CertificateType
impl From<u8> for CertificateType
Source§impl Hash for CertificateType
impl Hash 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 UnsafeUnpin 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