Enum rustls::tls13::key_schedule::SecretKind
source · enum SecretKind {
ResumptionPskBinderKey,
ClientEarlyTrafficSecret,
ClientHandshakeTrafficSecret,
ServerHandshakeTrafficSecret,
ClientApplicationTrafficSecret,
ServerApplicationTrafficSecret,
ExporterMasterSecret,
ResumptionMasterSecret,
DerivedSecret,
}
Expand description
The kinds of secret we can extract from KeySchedule
.
Variants§
ResumptionPskBinderKey
ClientEarlyTrafficSecret
ClientHandshakeTrafficSecret
ServerHandshakeTrafficSecret
ClientApplicationTrafficSecret
ServerApplicationTrafficSecret
ExporterMasterSecret
ResumptionMasterSecret
DerivedSecret
Implementations§
Trait Implementations§
source§impl Clone for SecretKind
impl Clone for SecretKind
source§fn clone(&self) -> SecretKind
fn clone(&self) -> SecretKind
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 SecretKind
impl Debug for SecretKind
source§impl PartialEq for SecretKind
impl PartialEq for SecretKind
source§fn eq(&self, other: &SecretKind) -> bool
fn eq(&self, other: &SecretKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SecretKind
impl StructuralPartialEq for SecretKind
Auto Trait Implementations§
impl Freeze for SecretKind
impl RefUnwindSafe for SecretKind
impl Send for SecretKind
impl Sync for SecretKind
impl Unpin for SecretKind
impl UnwindSafe for SecretKind
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