#[repr(u8)]pub enum EpochSecretExport {
SenderDataSecret = 0,
EncryptionSecret = 1,
ExporterSecret = 2,
ExternalSecret = 3,
ConfirmationKey = 4,
MembershipKey = 5,
ResumptionPsk = 6,
EpochAuthenticator = 7,
AssociatedPartiesSecret = 8,
}
Variants§
SenderDataSecret = 0
EncryptionSecret = 1
ExporterSecret = 2
ExternalSecret = 3
ConfirmationKey = 4
MembershipKey = 5
ResumptionPsk = 6
EpochAuthenticator = 7
AssociatedPartiesSecret = 8
Available on crate feature
draft-kohbrok-mls-associated-parties
only.Trait Implementations§
Source§impl Clone for EpochSecretExport
impl Clone for EpochSecretExport
Source§fn clone(&self) -> EpochSecretExport
fn clone(&self) -> EpochSecretExport
Returns a duplicate 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 EpochSecretExport
impl Debug for EpochSecretExport
Source§impl<'de> Deserialize<'de> for EpochSecretExport
impl<'de> Deserialize<'de> for EpochSecretExport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<EpochSecretExport> for KdfLabelKind
impl From<EpochSecretExport> for KdfLabelKind
Source§fn from(value: EpochSecretExport) -> Self
fn from(value: EpochSecretExport) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EpochSecretExport
impl PartialEq for EpochSecretExport
Source§impl Serialize for EpochSecretExport
impl Serialize for EpochSecretExport
impl Copy for EpochSecretExport
impl Eq for EpochSecretExport
impl StructuralPartialEq for EpochSecretExport
Auto Trait Implementations§
impl Freeze for EpochSecretExport
impl RefUnwindSafe for EpochSecretExport
impl Send for EpochSecretExport
impl Sync for EpochSecretExport
impl Unpin for EpochSecretExport
impl UnwindSafe for EpochSecretExport
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