pub struct V2ipTxStats {
pub video: u32,
pub audio: u32,
pub anc: u32,
pub stream_down: u32,
pub overflow: u32,
}Expand description
Transmitter stream statistics.
Fields§
§video: u32Video packets sent.
audio: u32Audio packets sent.
anc: u32Ancillary-data packets sent.
stream_down: u32Times the stream went down.
overflow: u32Transmit overflows.
Trait Implementations§
Source§impl Clone for V2ipTxStats
impl Clone for V2ipTxStats
Source§fn clone(&self) -> V2ipTxStats
fn clone(&self) -> V2ipTxStats
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 V2ipTxStats
Source§impl Debug for V2ipTxStats
impl Debug for V2ipTxStats
Source§impl Default for V2ipTxStats
impl Default for V2ipTxStats
Source§fn default() -> V2ipTxStats
fn default() -> V2ipTxStats
Returns the “default value” for a type. Read more
impl Eq for V2ipTxStats
Source§impl PartialEq for V2ipTxStats
impl PartialEq for V2ipTxStats
impl StructuralPartialEq for V2ipTxStats
Auto Trait Implementations§
impl Freeze for V2ipTxStats
impl RefUnwindSafe for V2ipTxStats
impl Send for V2ipTxStats
impl Sync for V2ipTxStats
impl Unpin for V2ipTxStats
impl UnsafeUnpin for V2ipTxStats
impl UnwindSafe for V2ipTxStats
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