Struct mqtt::control::packet_type::PacketType
[−]
[src]
pub struct PacketType { pub control_type: ControlType, pub flags: u8, }
Packet type
Fields
control_type: ControlType
flags: u8
Methods
impl PacketType
[src]
fn new(t: ControlType, flags: u8) -> PacketType
Creates a packet type
fn with_default(t: ControlType) -> PacketType
Creates a packet type with default flags
http://docs.oasis-open.org/mqtt/mqtt/v3.1.1/os/mqtt-v3.1.1-os.html#_Table_2.2_-
fn to_u8(&self) -> u8
To code
fn from_u8(val: u8) -> Result<PacketType, PacketTypeError>
From code
Trait Implementations
impl Debug for PacketType
[src]
impl Eq for PacketType
[src]
impl PartialEq for PacketType
[src]
fn eq(&self, __arg_0: &PacketType) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &PacketType) -> bool
This method tests for !=
.
impl Copy for PacketType
[src]
impl Clone for PacketType
[src]
fn clone(&self) -> PacketType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more