#[repr(u8)]pub enum PublishAckReason {
Success = 0,
NoMatchingSubscribers = 16,
UnspecifiedError = 128,
ImplementationSpecificError = 131,
NotAuthorized = 135,
TopicNameInvalid = 144,
PacketIdentifierInUse = 145,
QuotaExceeded = 151,
PayloadFormatInvalid = 153,
}
Variants§
Success = 0
NoMatchingSubscribers = 16
UnspecifiedError = 128
ImplementationSpecificError = 131
NotAuthorized = 135
TopicNameInvalid = 144
PacketIdentifierInUse = 145
QuotaExceeded = 151
PayloadFormatInvalid = 153
Trait Implementations§
Source§impl Clone for PublishAckReason
impl Clone for PublishAckReason
Source§fn clone(&self) -> PublishAckReason
fn clone(&self) -> PublishAckReason
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 PublishAckReason
impl Debug for PublishAckReason
Source§impl PartialEq for PublishAckReason
impl PartialEq for PublishAckReason
Source§impl TryFrom<u8> for PublishAckReason
impl TryFrom<u8> for PublishAckReason
Source§type Error = TryFromPrimitiveError<PublishAckReason>
type Error = TryFromPrimitiveError<PublishAckReason>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for PublishAckReason
impl TryFromPrimitive for PublishAckReason
impl Copy for PublishAckReason
impl StructuralPartialEq for PublishAckReason
Auto Trait Implementations§
impl Freeze for PublishAckReason
impl RefUnwindSafe for PublishAckReason
impl Send for PublishAckReason
impl Sync for PublishAckReason
impl Unpin for PublishAckReason
impl UnwindSafe for PublishAckReason
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