pub enum ProducerTraceEventType {
Rtp,
KeyFrame,
Nack,
Pli,
Fir,
SR,
}
Expand description
Types of consumer trace events.
Variants§
Rtp
RTP packet.
KeyFrame
RTP video keyframe packet.
Nack
RTCP NACK packet.
Pli
RTCP PLI packet.
Fir
RTCP FIR packet.
SR
RTCP Sender Report.
Trait Implementations§
Source§impl Clone for ProducerTraceEventType
impl Clone for ProducerTraceEventType
Source§fn clone(&self) -> ProducerTraceEventType
fn clone(&self) -> ProducerTraceEventType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProducerTraceEventType
impl Debug for ProducerTraceEventType
Source§impl<'de> Deserialize<'de> for ProducerTraceEventType
impl<'de> Deserialize<'de> for ProducerTraceEventType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ProducerTraceEventType
impl Hash for ProducerTraceEventType
Source§impl Ord for ProducerTraceEventType
impl Ord for ProducerTraceEventType
Source§fn cmp(&self, other: &ProducerTraceEventType) -> Ordering
fn cmp(&self, other: &ProducerTraceEventType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ProducerTraceEventType
impl PartialEq for ProducerTraceEventType
Source§impl PartialOrd for ProducerTraceEventType
impl PartialOrd for ProducerTraceEventType
Source§impl Serialize for ProducerTraceEventType
impl Serialize for ProducerTraceEventType
impl Copy for ProducerTraceEventType
impl Eq for ProducerTraceEventType
impl StructuralPartialEq for ProducerTraceEventType
Auto Trait Implementations§
impl Freeze for ProducerTraceEventType
impl RefUnwindSafe for ProducerTraceEventType
impl Send for ProducerTraceEventType
impl Sync for ProducerTraceEventType
impl Unpin for ProducerTraceEventType
impl UnwindSafe for ProducerTraceEventType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more