pub struct V2ipDeviceStats {
pub tx: V2ipTxStats,
pub tx_per_minute: V2ipTxStats,
pub rx: V2ipRxStats,
pub rx_per_minute: V2ipRxStats,
pub decoder: V2ipDecoderDetail,
}Expand description
The cumulative and per-minute transmit and receive statistics.
Fields§
§tx: V2ipTxStatsTransmit totals since boot.
tx_per_minute: V2ipTxStatsTransmit counts over the last minute.
rx: V2ipRxStatsReceive totals since boot.
rx_per_minute: V2ipRxStatsReceive counts over the last minute.
decoder: V2ipDecoderDetailWhat the sink’s decoder recovered from the codestream it is decoding.
Trait Implementations§
Source§impl Clone for V2ipDeviceStats
impl Clone for V2ipDeviceStats
Source§fn clone(&self) -> V2ipDeviceStats
fn clone(&self) -> V2ipDeviceStats
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 moreimpl Copy for V2ipDeviceStats
Source§impl Debug for V2ipDeviceStats
impl Debug for V2ipDeviceStats
Source§impl Default for V2ipDeviceStats
impl Default for V2ipDeviceStats
Source§fn default() -> V2ipDeviceStats
fn default() -> V2ipDeviceStats
Returns the “default value” for a type. Read more
impl Eq for V2ipDeviceStats
Source§impl PartialEq for V2ipDeviceStats
impl PartialEq for V2ipDeviceStats
impl StructuralPartialEq for V2ipDeviceStats
Auto Trait Implementations§
impl Freeze for V2ipDeviceStats
impl RefUnwindSafe for V2ipDeviceStats
impl Send for V2ipDeviceStats
impl Sync for V2ipDeviceStats
impl Unpin for V2ipDeviceStats
impl UnsafeUnpin for V2ipDeviceStats
impl UnwindSafe for V2ipDeviceStats
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