pub struct HostAdapters {
pub adapters: Vec<HostAdapter>,
}Expand description
Host Adapters - Format (0,2001)
Set of network adapters associated with entity
§XDR Definition (sFlow Host)
/* Set of adapters associated with entity */
/* opaque = counter_data; enterprise = 0; format = 2001 */
struct host_adapters {
adapter adapters<>; /* adapter(s) associated with entity */
}Fields§
§adapters: Vec<HostAdapter>Adapters
Trait Implementations§
Source§impl Clone for HostAdapters
impl Clone for HostAdapters
Source§fn clone(&self) -> HostAdapters
fn clone(&self) -> HostAdapters
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 HostAdapters
impl Debug for HostAdapters
impl Eq for HostAdapters
Source§impl PartialEq for HostAdapters
impl PartialEq for HostAdapters
Source§fn eq(&self, other: &HostAdapters) -> bool
fn eq(&self, other: &HostAdapters) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HostAdapters
Auto Trait Implementations§
impl Freeze for HostAdapters
impl RefUnwindSafe for HostAdapters
impl Send for HostAdapters
impl Sync for HostAdapters
impl Unpin for HostAdapters
impl UnsafeUnpin for HostAdapters
impl UnwindSafe for HostAdapters
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