Enum rav1e::prelude::RcData[][src]

pub enum RcData {
    Summary(Box<[u8]>),
    Frame(Box<[u8]>),
}

Rate Control Data

Variants

Summary(Box<[u8]>)

A Rate Control Summary Packet

It is emitted once, after the encoder is flushed.

It contains a summary of the rate control information for the encoding process that just terminated.

Frame(Box<[u8]>)

A Rate Control Frame-specific Packet

It is emitted every time a frame is processed.

The information contained is required to encode its matching frame in a second pass encoding.

Auto Trait Implementations

impl RefUnwindSafe for RcData

impl Send for RcData

impl Sync for RcData

impl Unpin for RcData

impl UnwindSafe for RcData

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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.