pub struct ReInitProposal { /* private fields */ }
Expand description
A proposal to reinitialize a group using new parameters.
Implementations§
Source§impl ReInitProposal
impl ReInitProposal
Sourcepub fn new_version(&self) -> ProtocolVersion
pub fn new_version(&self) -> ProtocolVersion
The new protocol version to use post reinitialization.
Sourcepub fn new_cipher_suite(&self) -> CipherSuite
pub fn new_cipher_suite(&self) -> CipherSuite
The new ciphersuite to use post reinitialization.
Sourcepub fn new_group_context_extensions(&self) -> &ExtensionList
pub fn new_group_context_extensions(&self) -> &ExtensionList
Group context extensions to set in the new group post reinitialization.
Trait Implementations§
Source§impl Clone for ReInitProposal
impl Clone for ReInitProposal
Source§fn clone(&self) -> ReInitProposal
fn clone(&self) -> ReInitProposal
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 ReInitProposal
impl Debug for ReInitProposal
Source§impl<'a> From<&'a ReInitProposal> for BorrowedProposal<'a>
impl<'a> From<&'a ReInitProposal> for BorrowedProposal<'a>
Source§fn from(p: &'a ReInitProposal) -> Self
fn from(p: &'a ReInitProposal) -> Self
Converts to this type from the input type.
Source§impl MlsDecode for ReInitProposal
impl MlsDecode for ReInitProposal
Source§impl MlsEncode for ReInitProposal
impl MlsEncode for ReInitProposal
Source§impl MlsSize for ReInitProposal
impl MlsSize for ReInitProposal
fn mls_encoded_len(&self) -> usize
Source§impl PartialEq for ReInitProposal
impl PartialEq for ReInitProposal
impl StructuralPartialEq for ReInitProposal
Auto Trait Implementations§
impl Freeze for ReInitProposal
impl RefUnwindSafe for ReInitProposal
impl Send for ReInitProposal
impl Sync for ReInitProposal
impl Unpin for ReInitProposal
impl UnwindSafe for ReInitProposal
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