pub enum PSKKeyExchangeMode {
PSK_KE,
PSK_DHE_KE,
Unknown(u8),
}
Expand description
The PSKKeyExchangeMode
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§
Implementations§
Trait Implementations§
source§impl Clone for PSKKeyExchangeMode
impl Clone for PSKKeyExchangeMode
source§fn clone(&self) -> PSKKeyExchangeMode
fn clone(&self) -> PSKKeyExchangeMode
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 Codec for PSKKeyExchangeMode
impl Codec for PSKKeyExchangeMode
source§fn encode(&self, bytes: &mut Vec<u8>)
fn encode(&self, bytes: &mut Vec<u8>)
Function for encoding itself by appending itself to
the provided vec of bytes. Read more
source§fn read(r: &mut Reader<'_>) -> Option<Self>
fn read(r: &mut Reader<'_>) -> Option<Self>
Function for decoding itself from the provided reader
will return Some if the decoding was successful or
None if it was not. Read more