#[repr(u8)]
pub enum MessageFormat {
RestrictedAscii,
LimitedUtf8,
ExtendedUtf8,
}
Variants§
Trait Implementations§
source§impl Clone for MessageFormat
impl Clone for MessageFormat
source§fn clone(&self) -> MessageFormat
fn clone(&self) -> MessageFormat
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 MessageFormat
impl Debug for MessageFormat
source§impl From<MessageFormat> for u8
impl From<MessageFormat> for u8
source§fn from(enum_value: MessageFormat) -> Self
fn from(enum_value: MessageFormat) -> Self
Converts to this type from the input type.
source§impl PartialEq<MessageFormat> for MessageFormat
impl PartialEq<MessageFormat> for MessageFormat
source§fn eq(&self, other: &MessageFormat) -> bool
fn eq(&self, other: &MessageFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<u8> for MessageFormat
impl TryFrom<u8> for MessageFormat
§type Error = TryFromPrimitiveError<MessageFormat>
type Error = TryFromPrimitiveError<MessageFormat>
The type returned in the event of a conversion error.