#[repr(C)]pub struct mxr_v2ip_stats_t {
pub tx: mxr_v2ip_tx_stats_t,
pub tx_per_minute: mxr_v2ip_tx_stats_t,
pub rx: mxr_v2ip_rx_stats_t,
pub rx_per_minute: mxr_v2ip_rx_stats_t,
pub decoder: mxr_v2ip_decoder_t,
}Expand description
A device’s V2IP statistics, cumulative and over the last minute.
Fields§
§tx: mxr_v2ip_tx_stats_tTransmit totals since boot.
tx_per_minute: mxr_v2ip_tx_stats_tTransmit counts over the last minute.
rx: mxr_v2ip_rx_stats_tReceive totals since boot.
rx_per_minute: mxr_v2ip_rx_stats_tReceive counts over the last minute.
decoder: mxr_v2ip_decoder_tWhat the sink’s decoder recovered from the codestream it is decoding.
Trait Implementations§
Source§impl Clone for mxr_v2ip_stats_t
impl Clone for mxr_v2ip_stats_t
Source§fn clone(&self) -> mxr_v2ip_stats_t
fn clone(&self) -> mxr_v2ip_stats_t
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 mxr_v2ip_stats_t
Auto Trait Implementations§
impl Freeze for mxr_v2ip_stats_t
impl RefUnwindSafe for mxr_v2ip_stats_t
impl Send for mxr_v2ip_stats_t
impl Sync for mxr_v2ip_stats_t
impl Unpin for mxr_v2ip_stats_t
impl UnsafeUnpin for mxr_v2ip_stats_t
impl UnwindSafe for mxr_v2ip_stats_t
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