pub struct StallStats {
pub stall_count: u64,
pub total_stall_time_ms: u64,
pub stall_durations: Vec<u64>,
}Expand description
Tracks streaming stall statistics.
Fields§
§stall_count: u64Number of stalls detected
total_stall_time_ms: u64Total stall time in milliseconds
stall_durations: Vec<u64>Individual stall durations in milliseconds
Trait Implementations§
Source§impl Clone for StallStats
impl Clone for StallStats
Source§fn clone(&self) -> StallStats
fn clone(&self) -> StallStats
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 StallStats
impl Debug for StallStats
Source§impl Default for StallStats
impl Default for StallStats
Source§fn default() -> StallStats
fn default() -> StallStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StallStats
impl RefUnwindSafe for StallStats
impl Send for StallStats
impl Sync for StallStats
impl Unpin for StallStats
impl UnsafeUnpin for StallStats
impl UnwindSafe for StallStats
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