pub struct StreamingMetrics {
pub average_latency_ms: f64,
pub p50_latency_ms: f64,
pub p95_latency_ms: f64,
pub p99_latency_ms: f64,
pub throughput_mbps: f64,
pub error_rate: f64,
pub frames_sent: u64,
pub bytes_sent: u64,
pub connections_active: usize,
}
Expand description
Metrics for streaming performance analysis
Fields§
§average_latency_ms: f64
§p50_latency_ms: f64
§p95_latency_ms: f64
§p99_latency_ms: f64
§throughput_mbps: f64
§error_rate: f64
§frames_sent: u64
§bytes_sent: u64
§connections_active: usize
Trait Implementations§
Source§impl Clone for StreamingMetrics
impl Clone for StreamingMetrics
Source§fn clone(&self) -> StreamingMetrics
fn clone(&self) -> StreamingMetrics
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 moreAuto Trait Implementations§
impl Freeze for StreamingMetrics
impl RefUnwindSafe for StreamingMetrics
impl Send for StreamingMetrics
impl Sync for StreamingMetrics
impl Unpin for StreamingMetrics
impl UnwindSafe for StreamingMetrics
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