//! Peer connection statistics.
//!
//! This module contains the [`RTCPeerConnectionStats`] type which provides
//! information about the peer connection as a whole.
use RTCStats;
use ;
/// Statistics for the peer connection.
///
/// This struct corresponds to the `RTCPeerConnectionStats` dictionary in the
/// W3C WebRTC Statistics API. It provides aggregate statistics about the
/// peer connection.
///
/// # W3C Reference
///
/// See [RTCPeerConnectionStats](https://www.w3.org/TR/webrtc-stats/#pcstats-dict*)