#[repr(u8)]pub enum DiagnosticMessageNegativeAckCode {
InvalidSourceAddress,
UnknownTargetAddress,
DiagnosticMessageTooLarge,
OutOfMemory,
TargetUnreachable,
UnknownNetwork,
TransportProtocolError,
Reserved(u8),
}Variants§
InvalidSourceAddress
UnknownTargetAddress
DiagnosticMessageTooLarge
Exceeds maximum supported size of transport protocol.
OutOfMemory
TargetUnreachable
UnknownNetwork
TransportProtocolError
Reserved(u8)
Trait Implementations§
Source§impl Clone for DiagnosticMessageNegativeAckCode
impl Clone for DiagnosticMessageNegativeAckCode
Source§fn clone(&self) -> DiagnosticMessageNegativeAckCode
fn clone(&self) -> DiagnosticMessageNegativeAckCode
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 From<u8> for DiagnosticMessageNegativeAckCode
impl From<u8> for DiagnosticMessageNegativeAckCode
Source§impl PartialEq for DiagnosticMessageNegativeAckCode
impl PartialEq for DiagnosticMessageNegativeAckCode
Source§fn eq(&self, other: &DiagnosticMessageNegativeAckCode) -> bool
fn eq(&self, other: &DiagnosticMessageNegativeAckCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DiagnosticMessageNegativeAckCode
impl Eq for DiagnosticMessageNegativeAckCode
impl StructuralPartialEq for DiagnosticMessageNegativeAckCode
Auto Trait Implementations§
impl Freeze for DiagnosticMessageNegativeAckCode
impl RefUnwindSafe for DiagnosticMessageNegativeAckCode
impl Send for DiagnosticMessageNegativeAckCode
impl Sync for DiagnosticMessageNegativeAckCode
impl Unpin for DiagnosticMessageNegativeAckCode
impl UnwindSafe for DiagnosticMessageNegativeAckCode
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