pub struct GroupInvitationData {
pub group_tag: Tag,
pub shared_aes_key: [u8; 32],
pub inviter_profile: UserProfile,
pub group_metadata: GroupMetadata,
pub timestamp: u64,
}Expand description
Sensitive group data sent only after successful verification
This message contains all the information needed for the invitee to join the group. It is only sent after the handshake has been confirmed.
Fields§
§group_tag: Tag§inviter_profile: UserProfile§group_metadata: GroupMetadata§timestamp: u64Trait Implementations§
Source§impl Clone for GroupInvitationData
impl Clone for GroupInvitationData
Source§fn clone(&self) -> GroupInvitationData
fn clone(&self) -> GroupInvitationData
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 GroupInvitationData
impl Debug for GroupInvitationData
Source§impl<'de> Deserialize<'de> for GroupInvitationData
impl<'de> Deserialize<'de> for GroupInvitationData
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 PartialEq for GroupInvitationData
impl PartialEq for GroupInvitationData
Source§impl Serialize for GroupInvitationData
impl Serialize for GroupInvitationData
impl StructuralPartialEq for GroupInvitationData
Auto Trait Implementations§
impl Freeze for GroupInvitationData
impl RefUnwindSafe for GroupInvitationData
impl Send for GroupInvitationData
impl Sync for GroupInvitationData
impl Unpin for GroupInvitationData
impl UnwindSafe for GroupInvitationData
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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