pub(crate) struct PictureInner {
    timestamp: u64,
    context: Rc<Context>,
    buffers: Vec<Buffer>,
    surface: Rc<RefCell<Surface>>,
}

Fields

timestamp: u64

Timestamp of the picture.

context: Rc<Context>

A context associated with this picture.

buffers: Vec<Buffer>

Contains the buffers used to decode the data.

surface: Rc<RefCell<Surface>>

Contains the actual decoded data. Note that the surface may be shared in interlaced decoding.

Implementations

Returns a reference to the Context used by the Picture

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.