pub struct BaseStats {Show 18 fields
pub timestamp: u64,
pub ssrc: u32,
pub kind: MediaKind,
pub mime_type: String,
pub packets_lost: u64,
pub fraction_lost: u8,
pub packets_discarded: u64,
pub packets_retransmitted: u64,
pub packets_repaired: u64,
pub nack_count: u64,
pub nack_packet_count: u64,
pub pli_count: u64,
pub fir_count: u64,
pub score: u8,
pub rid: Option<String>,
pub rtx_ssrc: Option<u32>,
pub rtx_packets_discarded: u64,
pub round_trip_time: f32,
}
Expand description
The table BaseStats
in the namespace FBS.RtpStream
Generated from these locations:
- Table
BaseStats
in the filefbs/rtpStream.fbs:46
Fields§
§timestamp: u64
The field timestamp
in the table BaseStats
ssrc: u32
The field ssrc
in the table BaseStats
kind: MediaKind
The field kind
in the table BaseStats
mime_type: String
The field mime_type
in the table BaseStats
packets_lost: u64
The field packets_lost
in the table BaseStats
fraction_lost: u8
The field fraction_lost
in the table BaseStats
packets_discarded: u64
The field packets_discarded
in the table BaseStats
packets_retransmitted: u64
The field packets_retransmitted
in the table BaseStats
packets_repaired: u64
The field packets_repaired
in the table BaseStats
nack_count: u64
The field nack_count
in the table BaseStats
nack_packet_count: u64
The field nack_packet_count
in the table BaseStats
pli_count: u64
The field pli_count
in the table BaseStats
fir_count: u64
The field fir_count
in the table BaseStats
score: u8
The field score
in the table BaseStats
rid: Option<String>
The field rid
in the table BaseStats
rtx_ssrc: Option<u32>
The field rtx_ssrc
in the table BaseStats
rtx_packets_discarded: u64
The field rtx_packets_discarded
in the table BaseStats
round_trip_time: f32
The field round_trip_time
in the table BaseStats
Implementations§
Source§impl BaseStats
impl BaseStats
Sourcepub fn builder() -> BaseStatsBuilder<()>
pub fn builder() -> BaseStatsBuilder<()>
Creates a BaseStatsBuilder for serializing an instance of this table.