pub struct ExternalEncryptionInfoTBS<'a> {
pub version: &'a ProtocolVersion,
pub group_id: GroupIdRef<'a>,
pub epoch: &'a Epoch,
pub ciphersuite: &'a CiphersuiteId,
pub external_encryption_public_key: HpkePublicKeyRef<'a>,
pub root_public_signature_key: SignaturePublicKeyRef<'a>,
}Available on crate feature
draft-mahy-mls-private-external only.Fields§
§version: &'a ProtocolVersion§group_id: GroupIdRef<'a>§epoch: &'a Epoch§ciphersuite: &'a CiphersuiteId§external_encryption_public_key: HpkePublicKeyRef<'a>§root_public_signature_key: SignaturePublicKeyRef<'a>Trait Implementations§
Source§impl<'a> Clone for ExternalEncryptionInfoTBS<'a>
impl<'a> Clone for ExternalEncryptionInfoTBS<'a>
Source§fn clone(&self) -> ExternalEncryptionInfoTBS<'a>
fn clone(&self) -> ExternalEncryptionInfoTBS<'a>
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<'a> Debug for ExternalEncryptionInfoTBS<'a>
impl<'a> Debug for ExternalEncryptionInfoTBS<'a>
Source§impl<'a> PartialEq for ExternalEncryptionInfoTBS<'a>
impl<'a> PartialEq for ExternalEncryptionInfoTBS<'a>
Source§fn eq(&self, other: &ExternalEncryptionInfoTBS<'a>) -> bool
fn eq(&self, other: &ExternalEncryptionInfoTBS<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for &ExternalEncryptionInfoTBS<'a>
impl<'a> Serialize for &ExternalEncryptionInfoTBS<'a>
Source§impl<'a> Serialize for ExternalEncryptionInfoTBS<'a>
impl<'a> Serialize for ExternalEncryptionInfoTBS<'a>
Source§impl<'a> Serialize for ExternalEncryptionInfoTBS<'a>
impl<'a> Serialize for ExternalEncryptionInfoTBS<'a>
Source§impl<'a> Size for &ExternalEncryptionInfoTBS<'a>
impl<'a> Size for &ExternalEncryptionInfoTBS<'a>
fn tls_serialized_len(&self) -> usize
Source§impl<'a> Size for ExternalEncryptionInfoTBS<'a>
impl<'a> Size for ExternalEncryptionInfoTBS<'a>
fn tls_serialized_len(&self) -> usize
impl<'a> Eq for ExternalEncryptionInfoTBS<'a>
impl<'a> StructuralPartialEq for ExternalEncryptionInfoTBS<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExternalEncryptionInfoTBS<'a>
impl<'a> RefUnwindSafe for ExternalEncryptionInfoTBS<'a>
impl<'a> Send for ExternalEncryptionInfoTBS<'a>
impl<'a> Sync for ExternalEncryptionInfoTBS<'a>
impl<'a> Unpin for ExternalEncryptionInfoTBS<'a>
impl<'a> UnsafeUnpin for ExternalEncryptionInfoTBS<'a>
impl<'a> UnwindSafe for ExternalEncryptionInfoTBS<'a>
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more