pub enum ProtocolError {
InvalidPacketType(u8),
InvalidResponse,
MalformedPacket,
PayloadTooLarge,
InvalidUtf8String,
}
Expand description
Enumerates specific MQTT protocol errors.
Variants§
InvalidPacketType(u8)
An invalid packet type was received.
InvalidResponse
The server sent an invalid or unexpected response.
MalformedPacket
A packet was received that was not correctly formed.
PayloadTooLarge
The payload of a message exceeds the maximum allowable size.
InvalidUtf8String
A string was not valid UTF-8.
Trait Implementations§
Source§impl Clone for ProtocolError
impl Clone for ProtocolError
Source§fn clone(&self) -> ProtocolError
fn clone(&self) -> ProtocolError
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 ProtocolError
impl Debug for ProtocolError
Source§impl PartialEq for ProtocolError
impl PartialEq for ProtocolError
impl Copy for ProtocolError
impl Eq for ProtocolError
impl StructuralPartialEq for ProtocolError
Auto Trait Implementations§
impl Freeze for ProtocolError
impl RefUnwindSafe for ProtocolError
impl Send for ProtocolError
impl Sync for ProtocolError
impl Unpin for ProtocolError
impl UnwindSafe for ProtocolError
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