pub struct GroupInfo { /* private fields */ }
Implementations§
Source§impl GroupInfo
impl GroupInfo
Sourcepub fn group_context(&self) -> &GroupContext
pub fn group_context(&self) -> &GroupContext
Group context.
Sourcepub fn extensions(&self) -> &ExtensionList
pub fn extensions(&self) -> &ExtensionList
Group info extensions (not to be confused with group context extensions), e.g. the ratchet tree.
Trait Implementations§
Source§impl From<GroupInfo> for ExternalReceivedMessage
Available on crate feature external_client
only.
impl From<GroupInfo> for ExternalReceivedMessage
Available on crate feature
external_client
only.Source§impl From<GroupInfo> for ReceivedMessage
impl From<GroupInfo> for ReceivedMessage
impl StructuralPartialEq for GroupInfo
Auto Trait Implementations§
impl Freeze for GroupInfo
impl RefUnwindSafe for GroupInfo
impl Send for GroupInfo
impl Sync for GroupInfo
impl Unpin for GroupInfo
impl UnwindSafe for GroupInfo
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