#[repr(u8)]pub enum NegativeAckCode {
IncorrectPatternFormat,
UnknownPayloadType,
MessageTooLarge,
OutOfMemory,
InvalidPayloadLength,
Reserved(u8),
}Variants§
IncorrectPatternFormat
UnknownPayloadType
MessageTooLarge
OutOfMemory
InvalidPayloadLength
Reserved(u8)
Implementations§
Trait Implementations§
Source§impl Clone for NegativeAckCode
impl Clone for NegativeAckCode
Source§fn clone(&self) -> NegativeAckCode
fn clone(&self) -> NegativeAckCode
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 NegativeAckCode
impl Debug for NegativeAckCode
Source§impl From<u8> for NegativeAckCode
impl From<u8> for NegativeAckCode
Source§impl PartialEq for NegativeAckCode
impl PartialEq for NegativeAckCode
impl Copy for NegativeAckCode
impl Eq for NegativeAckCode
impl StructuralPartialEq for NegativeAckCode
Auto Trait Implementations§
impl Freeze for NegativeAckCode
impl RefUnwindSafe for NegativeAckCode
impl Send for NegativeAckCode
impl Sync for NegativeAckCode
impl Unpin for NegativeAckCode
impl UnwindSafe for NegativeAckCode
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