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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! RTP stream statistics.
//!
//! This module contains statistics types for RTP streams:
//!
//! - [`RTCRtpStreamStats`] - Base statistics shared by all RTP streams
//! - [`received::RTCReceivedRtpStreamStats`] - Base for received streams
//! - [`sent::RTCSentRtpStreamStats`] - Base for sent streams
//! - [`received::inbound::RTCInboundRtpStreamStats`] - Local inbound stream stats
//! - [`received::remote_inbound::RTCRemoteInboundRtpStreamStats`] - Remote inbound stream stats
//! - [`sent::outbound::RTCOutboundRtpStreamStats`] - Local outbound stream stats
//! - [`sent::remote_outbound::RTCRemoteOutboundRtpStreamStats`] - Remote outbound stream stats
use RTCStats;
use crateSSRC;
use crateRtpCodecKind;
use ;
/// Base statistics for an RTP stream.
///
/// This struct corresponds to the `RTCRtpStreamStats` dictionary in the
/// W3C WebRTC Statistics API. It provides common fields shared by all
/// RTP stream statistics types.
///
/// This type is typically not used directly; instead, use the derived types
/// for specific stream directions.
///
/// # W3C Reference
///
/// See [RTCRtpStreamStats](https://www.w3.org/TR/webrtc-stats/#rtpstreamstats-dict*)