Struct mqtt::packet::disconnect::DisconnectPacket
source · [−]pub struct DisconnectPacket { /* private fields */ }
Expand description
DISCONNECT
packet
Implementations
sourceimpl DisconnectPacket
impl DisconnectPacket
pub fn new() -> DisconnectPacket
Trait Implementations
sourceimpl Clone for DisconnectPacket
impl Clone for DisconnectPacket
sourcefn clone(&self) -> DisconnectPacket
fn clone(&self) -> DisconnectPacket
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DisconnectPacket
impl Debug for DisconnectPacket
sourceimpl DecodablePacket for DisconnectPacket
impl DecodablePacket for DisconnectPacket
type DecodePacketError = Infallible
sourcefn decode_packet<R: Read>(
_reader: &mut R,
fixed_header: FixedHeader
) -> Result<Self, PacketError<Self>>
fn decode_packet<R: Read>(
_reader: &mut R,
fixed_header: FixedHeader
) -> Result<Self, PacketError<Self>>
Decode packet given a FixedHeader
sourceimpl Default for DisconnectPacket
impl Default for DisconnectPacket
sourcefn default() -> DisconnectPacket
fn default() -> DisconnectPacket
Returns the “default value” for a type. Read more
sourceimpl EncodablePacket for DisconnectPacket
impl EncodablePacket for DisconnectPacket
sourcefn fixed_header(&self) -> &FixedHeader
fn fixed_header(&self) -> &FixedHeader
Get a reference to FixedHeader
. All MQTT packet must have a fixed header.
sourcefn encode_packet<W: Write>(&self, writer: &mut W) -> Result<()>
fn encode_packet<W: Write>(&self, writer: &mut W) -> Result<()>
Encodes packet data after fixed header, including variable headers and payload
sourcefn encoded_packet_length(&self) -> u32
fn encoded_packet_length(&self) -> u32
Length in bytes for data after fixed header, including variable headers and payload
sourceimpl From<DisconnectPacket> for VariablePacket
impl From<DisconnectPacket> for VariablePacket
sourcefn from(pk: DisconnectPacket) -> VariablePacket
fn from(pk: DisconnectPacket) -> VariablePacket
Performs the conversion.
sourceimpl PartialEq<DisconnectPacket> for DisconnectPacket
impl PartialEq<DisconnectPacket> for DisconnectPacket
sourcefn eq(&self, other: &DisconnectPacket) -> bool
fn eq(&self, other: &DisconnectPacket) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DisconnectPacket) -> bool
fn ne(&self, other: &DisconnectPacket) -> bool
This method tests for !=
.
impl Eq for DisconnectPacket
impl StructuralEq for DisconnectPacket
impl StructuralPartialEq for DisconnectPacket
Auto Trait Implementations
impl RefUnwindSafe for DisconnectPacket
impl Send for DisconnectPacket
impl Sync for DisconnectPacket
impl Unpin for DisconnectPacket
impl UnwindSafe for DisconnectPacket
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Decodable for T where
T: DecodablePacket,
impl<T> Decodable for T where
T: DecodablePacket,
type Error = PacketError<T>
type Cond = Option<FixedHeader>
sourceimpl<T> Encodable for T where
T: EncodablePacket,
impl<T> Encodable for T where
T: EncodablePacket,
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more