pub enum Nud {
None,
Incomplete,
Reachable,
Stale,
Delay,
Probe,
Failed,
Noarp,
Permanent,
UnrecognizedConst(u16),
}
Expand description
Arp neighbor cache entry states
Variants§
Implementations§
Trait Implementations§
Source§impl Ord for Nud
impl Ord for Nud
Source§impl PartialOrd for Nud
impl PartialOrd for Nud
Source§impl Size for Nud
impl Size for Nud
Source§fn unpadded_size(&self) -> usize
fn unpadded_size(&self) -> usize
Size of the unpadded data structure. This will usually
only be unaligned for variable length types like
strings or byte buffers.
Source§fn padded_size(&self) -> usize
fn padded_size(&self) -> usize
Get the size of of the payload and align it to
the required netlink byte alignment.
impl Copy for Nud
impl Eq for Nud
impl StructuralPartialEq for Nud
Auto Trait Implementations§
impl Freeze for Nud
impl RefUnwindSafe for Nud
impl Send for Nud
impl Sync for Nud
impl Unpin for Nud
impl UnwindSafe for Nud
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