pub struct ArpEntries(pub Vec<ARPEntry>);Expand description
ARP table entries.
Tuple Fields§
§0: Vec<ARPEntry>Trait Implementations§
Source§impl Clone for ArpEntries
impl Clone for ArpEntries
Source§fn clone(&self) -> ArpEntries
fn clone(&self) -> ArpEntries
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ArpEntries
impl Debug for ArpEntries
Source§impl<'de> Deserialize<'de> for ArpEntries
impl<'de> Deserialize<'de> for ArpEntries
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromBufRead for ArpEntries
impl FromBufRead for ArpEntries
fn from_buf_read<R: BufRead>(r: R) -> ProcResult<Self>
Auto Trait Implementations§
impl Freeze for ArpEntries
impl RefUnwindSafe for ArpEntries
impl Send for ArpEntries
impl Sync for ArpEntries
impl Unpin for ArpEntries
impl UnsafeUnpin for ArpEntries
impl UnwindSafe for ArpEntries
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