1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! Sent RTP stream statistics.
//!
//! This module contains statistics types for sent RTP streams:
//!
//! - [`RTCSentRtpStreamStats`] - Base statistics for sent streams
//! - [`outbound::RTCOutboundRtpStreamStats`] - Local outbound stream statistics
//! - [`remote_outbound::RTCRemoteOutboundRtpStreamStats`] - Remote outbound stream statistics
use RTCRtpStreamStats;
use ;
/// Base statistics for a sent RTP stream.
///
/// This struct corresponds to the `RTCSentRtpStreamStats` dictionary in the
/// W3C WebRTC Statistics API. It provides common fields for streams sent
/// over the network.
///
/// This type is typically not used directly; instead, use
/// [`RTCOutboundRtpStreamStats`](outbound::RTCOutboundRtpStreamStats) or
/// [`RTCRemoteOutboundRtpStreamStats`](remote_outbound::RTCRemoteOutboundRtpStreamStats).
///
/// # W3C Reference
///
/// See [RTCSentRtpStreamStats](https://www.w3.org/TR/webrtc-stats/#sentrtpstats-dict*)