Enum mediasoup::producer::ProducerTraceEventType[][src]

pub enum ProducerTraceEventType {
    Rtp,
    KeyFrame,
    Nack,
    Pli,
    Fir,
}

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

impl Clone for ProducerTraceEventType[src]

impl Copy for ProducerTraceEventType[src]

impl Debug for ProducerTraceEventType[src]

impl<'de> Deserialize<'de> for ProducerTraceEventType[src]

impl Eq for ProducerTraceEventType[src]

impl Hash for ProducerTraceEventType[src]

impl Ord for ProducerTraceEventType[src]

impl PartialEq<ProducerTraceEventType> for ProducerTraceEventType[src]

impl PartialOrd<ProducerTraceEventType> for ProducerTraceEventType[src]

impl Serialize for ProducerTraceEventType[src]

impl StructuralEq for ProducerTraceEventType[src]

impl StructuralPartialEq for ProducerTraceEventType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.