pub struct OvsDpStats {
pub hits: u32,
pub misses: u32,
pub lost: u32,
pub mask_hits: u32,
pub flows: u32,
pub masks: u32,
}Expand description
OVS DP Stats - Format (0,2207)
Open vSwitch data path statistics
§XDR Definition (sFlow Discussion)
/* Open vSwitch data path statistics */
/* see datapath/datapath.h */
/* opaque = counter_data; enterprise = 0; format = 2207 */
struct ovs_dp_stats {
unsigned int hits;
unsigned int misses;
unsigned int lost;
unsigned int mask_hits;
unsigned int flows;
unsigned int masks;
}Fields§
§hits: u32Number of flow table hits
misses: u32Number of flow table misses
lost: u32Number of lost packets
mask_hits: u32Number of mask cache hits
flows: u32Number of flows in the data path
masks: u32Number of masks in the data path
Trait Implementations§
Source§impl Clone for OvsDpStats
impl Clone for OvsDpStats
Source§fn clone(&self) -> OvsDpStats
fn clone(&self) -> OvsDpStats
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 OvsDpStats
impl Debug for OvsDpStats
Source§impl PartialEq for OvsDpStats
impl PartialEq for OvsDpStats
impl Eq for OvsDpStats
impl StructuralPartialEq for OvsDpStats
Auto Trait Implementations§
impl Freeze for OvsDpStats
impl RefUnwindSafe for OvsDpStats
impl Send for OvsDpStats
impl Sync for OvsDpStats
impl Unpin for OvsDpStats
impl UnwindSafe for OvsDpStats
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