pub enum PubAckReason {
Success,
NoMatchingSubscribers,
UnspecifiedError,
ImplementationSpecificError,
NotAuthorized,
TopicNameInvalid,
PacketIdentifierInUse,
QuotaExceeded,
PayloadFormatInvalid,
}
Expand description
Return code in puback
Variants§
Success
NoMatchingSubscribers
UnspecifiedError
ImplementationSpecificError
NotAuthorized
TopicNameInvalid
PacketIdentifierInUse
QuotaExceeded
PayloadFormatInvalid
Trait Implementations§
Source§impl Clone for PubAckReason
impl Clone for PubAckReason
Source§fn clone(&self) -> PubAckReason
fn clone(&self) -> PubAckReason
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PubAckReason
impl Debug for PubAckReason
Source§impl PartialEq for PubAckReason
impl PartialEq for PubAckReason
impl Copy for PubAckReason
impl Eq for PubAckReason
impl StructuralPartialEq for PubAckReason
Auto Trait Implementations§
impl Freeze for PubAckReason
impl RefUnwindSafe for PubAckReason
impl Send for PubAckReason
impl Sync for PubAckReason
impl Unpin for PubAckReason
impl UnwindSafe for PubAckReason
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