#[repr(u8)]pub enum UnsubAckReason {
Success = 0,
NoSubscriptionExisted = 1,
UnspecifiedError = 2,
ImplementationSpecificError = 3,
NotAuthorized = 4,
TopicFilterInvalid = 5,
PacketIdentifierInUse = 6,
}
Variants§
Success = 0
NoSubscriptionExisted = 1
UnspecifiedError = 2
ImplementationSpecificError = 3
NotAuthorized = 4
TopicFilterInvalid = 5
PacketIdentifierInUse = 6
Trait Implementations§
Source§impl Clone for UnsubAckReason
impl Clone for UnsubAckReason
Source§fn clone(&self) -> UnsubAckReason
fn clone(&self) -> UnsubAckReason
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 UnsubAckReason
impl Debug for UnsubAckReason
Source§impl PartialEq for UnsubAckReason
impl PartialEq for UnsubAckReason
impl Copy for UnsubAckReason
impl Eq for UnsubAckReason
impl StructuralPartialEq for UnsubAckReason
Auto Trait Implementations§
impl Freeze for UnsubAckReason
impl RefUnwindSafe for UnsubAckReason
impl Send for UnsubAckReason
impl Sync for UnsubAckReason
impl Unpin for UnsubAckReason
impl UnwindSafe for UnsubAckReason
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