pub struct EncryptedGroupSecrets {
pub new_member: KeyPackageRef,
pub encrypted_group_secrets: HpkeCiphertext,
}
Fields§
§new_member: KeyPackageRef
§encrypted_group_secrets: HpkeCiphertext
Trait Implementations§
Source§impl Clone for EncryptedGroupSecrets
impl Clone for EncryptedGroupSecrets
Source§fn clone(&self) -> EncryptedGroupSecrets
fn clone(&self) -> EncryptedGroupSecrets
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 EncryptedGroupSecrets
impl Debug for EncryptedGroupSecrets
Source§impl Deserialize for EncryptedGroupSecrets
impl Deserialize for EncryptedGroupSecrets
Source§fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>
fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>
This function deserializes the
bytes
from the provided a std::io::Read
and returns the populated struct. Read moreSource§impl PartialEq for EncryptedGroupSecrets
impl PartialEq for EncryptedGroupSecrets
Source§impl Serialize for &EncryptedGroupSecrets
impl Serialize for &EncryptedGroupSecrets
Source§impl Serialize for EncryptedGroupSecrets
impl Serialize for EncryptedGroupSecrets
Source§impl Size for &EncryptedGroupSecrets
impl Size for &EncryptedGroupSecrets
fn tls_serialized_len(&self) -> usize
Source§impl Size for EncryptedGroupSecrets
impl Size for EncryptedGroupSecrets
fn tls_serialized_len(&self) -> usize
impl Eq for EncryptedGroupSecrets
impl StructuralPartialEq for EncryptedGroupSecrets
Auto Trait Implementations§
impl Freeze for EncryptedGroupSecrets
impl RefUnwindSafe for EncryptedGroupSecrets
impl Send for EncryptedGroupSecrets
impl Sync for EncryptedGroupSecrets
impl Unpin for EncryptedGroupSecrets
impl UnwindSafe for EncryptedGroupSecrets
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