pub struct StatisticsSummaryReportBlock {Show 17 fields
pub loss_reports: bool,
pub duplicate_reports: bool,
pub jitter_reports: bool,
pub ttl_or_hop_limit: TTLorHopLimitType,
pub ssrc: u32,
pub begin_seq: u16,
pub end_seq: u16,
pub lost_packets: u32,
pub dup_packets: u32,
pub min_jitter: u32,
pub max_jitter: u32,
pub mean_jitter: u32,
pub dev_jitter: u32,
pub min_ttl_or_hl: u8,
pub max_ttl_or_hl: u8,
pub mean_ttl_or_hl: u8,
pub dev_ttl_or_hl: u8,
}Expand description
StatisticsSummaryReportBlock encodes a Statistics Summary Report Block as described in RFC 3611, section 4.6.
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | BT=6 |L|D|J|ToH|rsvd.| block length = 9 | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | ssrc of source | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | begin_seq | end_seq | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | lost_packets | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | dup_packets | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | min_jitter | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | max_jitter | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | mean_jitter | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | dev_jitter | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | min_ttl_or_hl | max_ttl_or_hl |mean_ttl_or_hl | dev_ttl_or_hl | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Fields§
§loss_reports: bool§duplicate_reports: bool§jitter_reports: bool§ttl_or_hop_limit: TTLorHopLimitType§ssrc: u32§begin_seq: u16§end_seq: u16§lost_packets: u32§dup_packets: u32§min_jitter: u32§max_jitter: u32§mean_jitter: u32§dev_jitter: u32§min_ttl_or_hl: u8§max_ttl_or_hl: u8§mean_ttl_or_hl: u8§dev_ttl_or_hl: u8Implementations§
Trait Implementations§
Source§impl Clone for StatisticsSummaryReportBlock
impl Clone for StatisticsSummaryReportBlock
Source§fn clone(&self) -> StatisticsSummaryReportBlock
fn clone(&self) -> StatisticsSummaryReportBlock
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for StatisticsSummaryReportBlock
impl Debug for StatisticsSummaryReportBlock
Source§impl Default for StatisticsSummaryReportBlock
impl Default for StatisticsSummaryReportBlock
Source§fn default() -> StatisticsSummaryReportBlock
fn default() -> StatisticsSummaryReportBlock
Source§impl MarshalSize for StatisticsSummaryReportBlock
impl MarshalSize for StatisticsSummaryReportBlock
fn marshal_size(&self) -> usize
Source§impl Packet for StatisticsSummaryReportBlock
impl Packet for StatisticsSummaryReportBlock
Source§fn destination_ssrc(&self) -> Vec<u32>
fn destination_ssrc(&self) -> Vec<u32>
destination_ssrc returns an array of ssrc values that this report block refers to.
fn header(&self) -> Header
fn raw_size(&self) -> usize
fn as_any(&self) -> &dyn Any
fn equal(&self, other: &dyn Packet) -> bool
fn cloned(&self) -> Box<dyn Packet>
Source§impl PartialEq for StatisticsSummaryReportBlock
impl PartialEq for StatisticsSummaryReportBlock
Source§fn eq(&self, other: &StatisticsSummaryReportBlock) -> bool
fn eq(&self, other: &StatisticsSummaryReportBlock) -> bool
self and other values to be equal, and is used by ==.