Struct rustls::kx::SupportedKxGroup
source · pub struct SupportedKxGroup {
pub name: NamedGroup,
agreement_algorithm: &'static Algorithm,
}
Expand description
A key-exchange group supported by rustls.
All possible instances of this class are provided by the library in
the ALL_KX_GROUPS
array.
Fields§
§name: NamedGroup
The IANA “TLS Supported Groups” name of the group
agreement_algorithm: &'static Algorithm
The corresponding ring agreement::Algorithm
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SupportedKxGroup
impl RefUnwindSafe for SupportedKxGroup
impl Send for SupportedKxGroup
impl Sync for SupportedKxGroup
impl Unpin for SupportedKxGroup
impl UnwindSafe for SupportedKxGroup
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