pub struct V2ipRxStats {
pub video_total: u32,
pub video_dropped: u32,
pub video_seq_errors: u32,
pub wdt_timeout: u32,
pub audio_total: u32,
pub audio_dropped: u32,
pub audio_seq_errors: u32,
pub anc_total: u32,
pub anc_dropped: u32,
pub anc_seq_errors: u32,
pub decoder_state: V2ipDecoderState,
}Expand description
Receiver stream statistics.
Fields§
§video_total: u32Video packets received.
video_dropped: u32Video packets dropped.
video_seq_errors: u32Video sequence errors.
wdt_timeout: u32Watchdog timeouts.
audio_total: u32Audio packets received.
audio_dropped: u32Audio packets dropped.
audio_seq_errors: u32Audio sequence errors.
anc_total: u32Ancillary-data packets received.
anc_dropped: u32Ancillary-data packets dropped.
anc_seq_errors: u32Ancillary-data sequence errors.
decoder_state: V2ipDecoderStateThe decoder’s health state.
Trait Implementations§
Source§impl Clone for V2ipRxStats
impl Clone for V2ipRxStats
Source§fn clone(&self) -> V2ipRxStats
fn clone(&self) -> V2ipRxStats
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 V2ipRxStats
Source§impl Debug for V2ipRxStats
impl Debug for V2ipRxStats
Source§impl Default for V2ipRxStats
impl Default for V2ipRxStats
Source§fn default() -> V2ipRxStats
fn default() -> V2ipRxStats
Returns the “default value” for a type. Read more
impl Eq for V2ipRxStats
Source§impl PartialEq for V2ipRxStats
impl PartialEq for V2ipRxStats
impl StructuralPartialEq for V2ipRxStats
Auto Trait Implementations§
impl Freeze for V2ipRxStats
impl RefUnwindSafe for V2ipRxStats
impl Send for V2ipRxStats
impl Sync for V2ipRxStats
impl Unpin for V2ipRxStats
impl UnsafeUnpin for V2ipRxStats
impl UnwindSafe for V2ipRxStats
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