Struct mls_rs::group::ProposalMessageDescription
source · pub struct ProposalMessageDescription {
pub sender: ProposalSender,
pub proposal: Proposal,
pub authenticated_data: Vec<u8>,
/* private fields */
}
Expand description
Description of a processed MLS proposal message.
Fields§
§sender: ProposalSender
Sender of the proposal.
proposal: Proposal
Proposal content.
authenticated_data: Vec<u8>
Plaintext authenticated data in the received MLS packet.
Implementations§
source§impl ProposalMessageDescription
impl ProposalMessageDescription
pub fn cached_proposal(self) -> CachedProposal
Trait Implementations§
source§impl Clone for ProposalMessageDescription
impl Clone for ProposalMessageDescription
source§fn clone(&self) -> ProposalMessageDescription
fn clone(&self) -> ProposalMessageDescription
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 ProposalMessageDescription
impl Debug for ProposalMessageDescription
source§impl From<ProposalMessageDescription> for ExternalReceivedMessage
Available on crate feature external_client
only.
impl From<ProposalMessageDescription> for ExternalReceivedMessage
Available on crate feature
external_client
only.source§fn from(value: ProposalMessageDescription) -> Self
fn from(value: ProposalMessageDescription) -> Self
Converts to this type from the input type.
source§impl From<ProposalMessageDescription> for ReceivedMessage
impl From<ProposalMessageDescription> for ReceivedMessage
source§fn from(value: ProposalMessageDescription) -> Self
fn from(value: ProposalMessageDescription) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for ProposalMessageDescription
impl Send for ProposalMessageDescription
impl Sync for ProposalMessageDescription
impl Unpin for ProposalMessageDescription
impl UnwindSafe for ProposalMessageDescription
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