#[repr(u16)]pub enum FrankenProposal {
Add(FrankenAddProposal),
Update(FrankenUpdateProposal),
Remove(FrankenRemoveProposal),
PreSharedKey(FrankenPreSharedKeyProposal),
ReInit(FrankenReInitProposal),
ExternalInit(FrankenExternalInitProposal),
GroupContextExtensions(Vec<FrankenExtension>),
AppEphemeral(FrankenAppEphemeralProposal),
Custom(FrankenCustomProposal),
}Available on (32-bit or 64-bit) and (crate features
test-utils) only.Variants§
Add(FrankenAddProposal)
Update(FrankenUpdateProposal)
Remove(FrankenRemoveProposal)
ReInit(FrankenReInitProposal)
ExternalInit(FrankenExternalInitProposal)
GroupContextExtensions(Vec<FrankenExtension>)
AppEphemeral(FrankenAppEphemeralProposal)
Available on crate feature
extensions-draft-08 only.Custom(FrankenCustomProposal)
Implementations§
Source§impl FrankenProposal
impl FrankenProposal
pub fn proposal_type(&self) -> FrankenProposalType
Trait Implementations§
Source§impl Clone for FrankenProposal
impl Clone for FrankenProposal
Source§fn clone(&self) -> FrankenProposal
fn clone(&self) -> FrankenProposal
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 FrankenProposal
impl Debug for FrankenProposal
Source§impl Deserialize for FrankenProposal
impl Deserialize for FrankenProposal
Source§fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>where
Self: Sized,
fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>where
Self: Sized,
Available on crate feature
std only.This function deserializes the
bytes from the provided a std::io::Read
and returns the populated struct. Read moreSource§impl DeserializeBytes for FrankenProposal
impl DeserializeBytes for FrankenProposal
Source§impl PartialEq for FrankenProposal
impl PartialEq for FrankenProposal
Source§impl Serialize for FrankenProposal
impl Serialize for FrankenProposal
Source§impl Size for FrankenProposal
impl Size for FrankenProposal
fn tls_serialized_len(&self) -> usize
impl Eq for FrankenProposal
impl StructuralPartialEq for FrankenProposal
Auto Trait Implementations§
impl Freeze for FrankenProposal
impl RefUnwindSafe for FrankenProposal
impl Send for FrankenProposal
impl Sync for FrankenProposal
impl Unpin for FrankenProposal
impl UnwindSafe for FrankenProposal
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
§impl<T> Classify for T
impl<T> Classify for T
type Classified = T
fn classify(self) -> T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Declassify for T
impl<T> Declassify for T
type Declassified = T
fn declassify(self) -> T
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