pub struct ReInitProposal {
pub group_id: GroupId,
pub version: ProtocolVersion,
pub cipher_suite: CiphersuiteId,
pub extensions: Vec<Extension>,
}
Fields§
§group_id: GroupId
§version: ProtocolVersion
§cipher_suite: CiphersuiteId
§extensions: Vec<Extension>
Implementations§
Source§impl ReInitProposal
impl ReInitProposal
pub fn matches_group_context(&self, ctx: &GroupContext) -> bool
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<'de> Deserialize<'de> for ReInitProposal
impl<'de> Deserialize<'de> for ReInitProposal
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 ReInitProposal
impl Deserialize for ReInitProposal
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 PartialEq for ReInitProposal
impl PartialEq for ReInitProposal
Source§impl Serialize for &ReInitProposal
impl Serialize for &ReInitProposal
Source§impl Serialize for ReInitProposal
impl Serialize for ReInitProposal
Source§impl Serialize for ReInitProposal
impl Serialize for ReInitProposal
Source§impl Size for &ReInitProposal
impl Size for &ReInitProposal
fn tls_serialized_len(&self) -> usize
Source§impl Size for ReInitProposal
impl Size for ReInitProposal
fn tls_serialized_len(&self) -> usize
impl Eq 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