#[non_exhaustive]pub enum CertificateCompressionAlgorithm {
Zlib,
Brotli,
Zstd,
Unknown(u16),
}
Expand description
The “TLS Certificate Compression Algorithm IDs” TLS protocol enum. Values in this enum are taken from RFC8879.
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 CertificateCompressionAlgorithm
impl Clone for CertificateCompressionAlgorithm
source§fn clone(&self) -> CertificateCompressionAlgorithm
fn clone(&self) -> CertificateCompressionAlgorithm
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 From<CertificateCompressionAlgorithm> for u16
impl From<CertificateCompressionAlgorithm> for u16
source§fn from(value: CertificateCompressionAlgorithm) -> Self
fn from(value: CertificateCompressionAlgorithm) -> Self
Converts to this type from the input type.
source§impl From<u16> for CertificateCompressionAlgorithm
impl From<u16> for CertificateCompressionAlgorithm
source§impl PartialEq for CertificateCompressionAlgorithm
impl PartialEq for CertificateCompressionAlgorithm
source§fn eq(&self, other: &CertificateCompressionAlgorithm) -> bool
fn eq(&self, other: &CertificateCompressionAlgorithm) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for CertificateCompressionAlgorithm
impl Eq for CertificateCompressionAlgorithm
impl StructuralPartialEq for CertificateCompressionAlgorithm
Auto Trait Implementations§
impl Freeze for CertificateCompressionAlgorithm
impl RefUnwindSafe for CertificateCompressionAlgorithm
impl Send for CertificateCompressionAlgorithm
impl Sync for CertificateCompressionAlgorithm
impl Unpin for CertificateCompressionAlgorithm
impl UnwindSafe for CertificateCompressionAlgorithm
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)