pub trait RtcpPacket {
const MIN_PACKET_LEN: usize;
const PACKET_TYPE: u8;
const VERSION: u8 = 2u8;
const MAX_COUNT: u8 = 31u8;
}Expand description
A Trait defining RTCP Packet structural data.
Required Associated Constants§
const MIN_PACKET_LEN: usize
const PACKET_TYPE: u8
Provided Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.