pub struct GroupContextExtensionProposal { /* private fields */ }
Expand description
GroupContextExtensions Proposal.
A GroupContextExtensions proposal is used to update the list of extensions in the GroupContext for the group.
// draft-ietf-mls-protocol-17
struct {
Extension extensions<V>;
} GroupContextExtensions;
Implementations§
Source§impl GroupContextExtensionProposal
impl GroupContextExtensionProposal
Sourcepub fn extensions(&self) -> &Extensions
pub fn extensions(&self) -> &Extensions
Get the extensions of the proposal
Trait Implementations§
Source§impl Clone for GroupContextExtensionProposal
impl Clone for GroupContextExtensionProposal
Source§fn clone(&self) -> GroupContextExtensionProposal
fn clone(&self) -> GroupContextExtensionProposal
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<'de> Deserialize<'de> for GroupContextExtensionProposal
impl<'de> Deserialize<'de> for GroupContextExtensionProposal
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 Deserialize for GroupContextExtensionProposal
impl Deserialize for GroupContextExtensionProposal
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 DeserializeBytes for GroupContextExtensionProposal
impl DeserializeBytes for GroupContextExtensionProposal
Source§impl PartialEq for GroupContextExtensionProposal
impl PartialEq for GroupContextExtensionProposal
Source§fn eq(&self, other: &GroupContextExtensionProposal) -> bool
fn eq(&self, other: &GroupContextExtensionProposal) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for &GroupContextExtensionProposal
impl Serialize for &GroupContextExtensionProposal
Source§impl Serialize for GroupContextExtensionProposal
impl Serialize for GroupContextExtensionProposal
Source§impl Size for &GroupContextExtensionProposal
impl Size for &GroupContextExtensionProposal
fn tls_serialized_len(&self) -> usize
Source§impl Size for GroupContextExtensionProposal
impl Size for GroupContextExtensionProposal
fn tls_serialized_len(&self) -> usize
impl Eq for GroupContextExtensionProposal
impl StructuralPartialEq for GroupContextExtensionProposal
Auto Trait Implementations§
impl Freeze for GroupContextExtensionProposal
impl RefUnwindSafe for GroupContextExtensionProposal
impl Send for GroupContextExtensionProposal
impl Sync for GroupContextExtensionProposal
impl Unpin for GroupContextExtensionProposal
impl UnwindSafe for GroupContextExtensionProposal
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