pub struct StreamStats {
pub underrun_count: u64,
pub late_chunk_count: u64,
pub reconnect_count: u64,
pub chunks_written: u64,
pub points_written: u64,
}Expand description
Stream statistics for diagnostics and debugging.
Fields§
§underrun_count: u64Number of times the stream underran.
late_chunk_count: u64Number of chunks that arrived late.
reconnect_count: u64Number of times the device reconnected.
chunks_written: u64Total chunks written since stream start.
points_written: u64Total points written since stream start.
Trait Implementations§
Source§impl Clone for StreamStats
impl Clone for StreamStats
Source§fn clone(&self) -> StreamStats
fn clone(&self) -> StreamStats
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 StreamStats
impl Debug for StreamStats
Source§impl Default for StreamStats
impl Default for StreamStats
Source§fn default() -> StreamStats
fn default() -> StreamStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StreamStats
impl RefUnwindSafe for StreamStats
impl Send for StreamStats
impl Sync for StreamStats
impl Unpin for StreamStats
impl UnwindSafe for StreamStats
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