pub struct Stats {Show 24 fields
pub transport_id: String,
pub timestamp: u64,
pub sctp_state: Option<SctpState>,
pub bytes_received: u64,
pub recv_bitrate: u32,
pub bytes_sent: u64,
pub send_bitrate: u32,
pub rtp_bytes_received: u64,
pub rtp_recv_bitrate: u32,
pub rtp_bytes_sent: u64,
pub rtp_send_bitrate: u32,
pub rtx_bytes_received: u64,
pub rtx_recv_bitrate: u32,
pub rtx_bytes_sent: u64,
pub rtx_send_bitrate: u32,
pub probation_bytes_sent: u64,
pub probation_send_bitrate: u32,
pub available_outgoing_bitrate: Option<u32>,
pub available_incoming_bitrate: Option<u32>,
pub max_incoming_bitrate: Option<u32>,
pub max_outgoing_bitrate: Option<u32>,
pub min_outgoing_bitrate: Option<u32>,
pub rtp_packet_loss_received: Option<f64>,
pub rtp_packet_loss_sent: Option<f64>,
}
Expand description
The table Stats
in the namespace FBS.Transport
Generated from these locations:
- Table
Stats
in the filefbs/transport.fbs:157
Fields§
§transport_id: String
The field transport_id
in the table Stats
timestamp: u64
The field timestamp
in the table Stats
sctp_state: Option<SctpState>
The field sctp_state
in the table Stats
bytes_received: u64
The field bytes_received
in the table Stats
recv_bitrate: u32
The field recv_bitrate
in the table Stats
bytes_sent: u64
The field bytes_sent
in the table Stats
send_bitrate: u32
The field send_bitrate
in the table Stats
rtp_bytes_received: u64
The field rtp_bytes_received
in the table Stats
rtp_recv_bitrate: u32
The field rtp_recv_bitrate
in the table Stats
rtp_bytes_sent: u64
The field rtp_bytes_sent
in the table Stats
rtp_send_bitrate: u32
The field rtp_send_bitrate
in the table Stats
rtx_bytes_received: u64
The field rtx_bytes_received
in the table Stats
rtx_recv_bitrate: u32
The field rtx_recv_bitrate
in the table Stats
rtx_bytes_sent: u64
The field rtx_bytes_sent
in the table Stats
rtx_send_bitrate: u32
The field rtx_send_bitrate
in the table Stats
probation_bytes_sent: u64
The field probation_bytes_sent
in the table Stats
probation_send_bitrate: u32
The field probation_send_bitrate
in the table Stats
available_outgoing_bitrate: Option<u32>
The field available_outgoing_bitrate
in the table Stats
available_incoming_bitrate: Option<u32>
The field available_incoming_bitrate
in the table Stats
max_incoming_bitrate: Option<u32>
The field max_incoming_bitrate
in the table Stats
max_outgoing_bitrate: Option<u32>
The field max_outgoing_bitrate
in the table Stats
min_outgoing_bitrate: Option<u32>
The field min_outgoing_bitrate
in the table Stats
rtp_packet_loss_received: Option<f64>
The field rtp_packet_loss_received
in the table Stats
rtp_packet_loss_sent: Option<f64>
The field rtp_packet_loss_sent
in the table Stats
Implementations§
Source§impl Stats
impl Stats
Sourcepub fn builder() -> StatsBuilder<()>
pub fn builder() -> StatsBuilder<()>
Creates a StatsBuilder for serializing an instance of this table.