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
//! Certificate statistics.
//!
//! This module contains the [`RTCCertificateStats`] type which provides
//! information about certificates used in the DTLS handshake.
use RTCStats;
use ;
/// Statistics for a certificate used in DTLS.
///
/// This struct corresponds to the `RTCCertificateStats` dictionary in the
/// W3C WebRTC Statistics API. It provides information about certificates
/// used during the DTLS handshake.
///
/// # W3C Reference
///
/// See [RTCCertificateStats](https://www.w3.org/TR/webrtc-stats/#certificatestats-dict*)