Enum rustls::NamedGroup
source · #[non_exhaustive]pub enum NamedGroup {
secp256r1,
secp384r1,
secp521r1,
X25519,
X448,
FFDHE2048,
FFDHE3072,
FFDHE4096,
FFDHE6144,
FFDHE8192,
Unknown(u16),
}
Expand description
The NamedGroup
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 (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.
secp256r1
secp384r1
secp521r1
X25519
X448
FFDHE2048
FFDHE3072
FFDHE4096
FFDHE6144
FFDHE8192
Unknown(u16)
Implementations§
source§impl NamedGroup
impl NamedGroup
source§impl NamedGroup
impl NamedGroup
sourcepub fn key_exchange_algorithm(self) -> KeyExchangeAlgorithm
pub fn key_exchange_algorithm(self) -> KeyExchangeAlgorithm
Return the key exchange algorithm associated with this NamedGroup
Trait Implementations§
source§impl Clone for NamedGroup
impl Clone for NamedGroup
source§fn clone(&self) -> NamedGroup
fn clone(&self) -> NamedGroup
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 Debug for NamedGroup
impl Debug for NamedGroup
source§impl From<NamedGroup> for u16
impl From<NamedGroup> for u16
source§fn from(value: NamedGroup) -> Self
fn from(value: NamedGroup) -> Self
Converts to this type from the input type.
source§impl From<u16> for NamedGroup
impl From<u16> for NamedGroup
source§impl PartialEq for NamedGroup
impl PartialEq for NamedGroup
impl Copy for NamedGroup
impl Eq for NamedGroup
impl StructuralPartialEq for NamedGroup
Auto Trait Implementations§
impl Freeze for NamedGroup
impl RefUnwindSafe for NamedGroup
impl Send for NamedGroup
impl Sync for NamedGroup
impl Unpin for NamedGroup
impl UnwindSafe for NamedGroup
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
)