pub enum ConsumerTraceEventType {
Rtp,
KeyFrame,
Nack,
Pli,
Fir,
}
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.
Trait Implementations§
Source§impl Clone for ConsumerTraceEventType
impl Clone for ConsumerTraceEventType
Source§fn clone(&self) -> ConsumerTraceEventType
fn clone(&self) -> ConsumerTraceEventType
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 ConsumerTraceEventType
impl Debug for ConsumerTraceEventType
Source§impl<'de> Deserialize<'de> for ConsumerTraceEventType
impl<'de> Deserialize<'de> for ConsumerTraceEventType
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 ConsumerTraceEventType
impl Hash for ConsumerTraceEventType
Source§impl Ord for ConsumerTraceEventType
impl Ord for ConsumerTraceEventType
Source§fn cmp(&self, other: &ConsumerTraceEventType) -> Ordering
fn cmp(&self, other: &ConsumerTraceEventType) -> 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 ConsumerTraceEventType
impl PartialEq for ConsumerTraceEventType
Source§impl PartialOrd for ConsumerTraceEventType
impl PartialOrd for ConsumerTraceEventType
Source§impl Serialize for ConsumerTraceEventType
impl Serialize for ConsumerTraceEventType
impl Copy for ConsumerTraceEventType
impl Eq for ConsumerTraceEventType
impl StructuralPartialEq for ConsumerTraceEventType
Auto Trait Implementations§
impl Freeze for ConsumerTraceEventType
impl RefUnwindSafe for ConsumerTraceEventType
impl Send for ConsumerTraceEventType
impl Sync for ConsumerTraceEventType
impl Unpin for ConsumerTraceEventType
impl UnwindSafe for ConsumerTraceEventType
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