pub struct WireFormat(/* private fields */);Implementations§
Source§impl WireFormat
impl WireFormat
pub const SPEC_RESERVED: u16
pub const MLS_PUBLIC_MESSAGE: u16
pub const MLS_PRIVATE_MESSAGE: u16
pub const MLS_WELCOME: u16
pub const MLS_GROUP_INFO: u16
pub const MLS_KEY_PACKAGE: u16
pub const MLS_TARGETED_MESSAGE: u16
Available on crate feature
draft-ietf-mls-targeted-messages only.pub const MLS_SEMIPRIVATE_MESSAGE: u16
Available on crate feature
draft-mahy-mls-semiprivatemessage only.pub const MLS_SPLIT_COMMIT: u16
Available on crate feature
draft-mularczyk-mls-splitcommit only.pub const MLS_MESSAGE_WITHOUT_AAD: u16
Available on crate feature
draft-pham-mls-additional-wire-formats only.pub const MLS_PRIVATE_EXTERNAL_MESSAGE: u16
Available on crate feature
draft-mahy-mls-private-external only.pub const MLS_LEAF_OPERATION_INTENT: u16
Available on crate feature
draft-kohbrok-mls-leaf-operation-intents only.Source§impl WireFormat
impl WireFormat
pub fn all_without_spec_default() -> Vec<Self>
pub const fn new_unchecked(value: u16) -> Self
pub fn new_private_use(value: u16) -> MlsSpecResult<Self>
pub const fn is_spec_default(&self) -> bool
pub fn is_grease_value(&self) -> bool
Trait Implementations§
Source§impl Clone for WireFormat
impl Clone for WireFormat
Source§fn clone(&self) -> WireFormat
fn clone(&self) -> WireFormat
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 WireFormat
impl Debug for WireFormat
Source§impl Deref for WireFormat
impl Deref for WireFormat
Source§impl<'de> Deserialize<'de> for WireFormat
impl<'de> Deserialize<'de> for WireFormat
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 WireFormat
impl Deserialize for WireFormat
Source§fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>
fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>
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 Display for WireFormat
impl Display for WireFormat
Source§impl Hash for WireFormat
impl Hash for WireFormat
Source§impl Into<WireFormat> for &MlsMessageContent
impl Into<WireFormat> for &MlsMessageContent
Source§fn into(self) -> WireFormat
fn into(self) -> WireFormat
Converts this type into the (usually inferred) input type.
Source§impl Ord for WireFormat
impl Ord for WireFormat
Source§fn cmp(&self, other: &WireFormat) -> Ordering
fn cmp(&self, other: &WireFormat) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WireFormat
impl PartialEq for WireFormat
Source§impl PartialOrd for WireFormat
impl PartialOrd for WireFormat
Source§impl Serialize for &WireFormat
impl Serialize for &WireFormat
Source§impl Serialize for WireFormat
impl Serialize for WireFormat
Source§impl Serialize for WireFormat
impl Serialize for WireFormat
Source§impl Size for &WireFormat
impl Size for &WireFormat
fn tls_serialized_len(&self) -> usize
Source§impl Size for WireFormat
impl Size for WireFormat
fn tls_serialized_len(&self) -> usize
Source§impl TryFrom<u16> for WireFormat
impl TryFrom<u16> for WireFormat
impl Copy for WireFormat
impl Eq for WireFormat
impl StructuralPartialEq for WireFormat
Auto Trait Implementations§
impl Freeze for WireFormat
impl RefUnwindSafe for WireFormat
impl Send for WireFormat
impl Sync for WireFormat
impl Unpin for WireFormat
impl UnsafeUnpin for WireFormat
impl UnwindSafe for WireFormat
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