[][src]Struct ffmpeg_sys_next::AVDRMLayerDescriptor

#[repr(C)]pub struct AVDRMLayerDescriptor {
    pub format: u32,
    pub nb_planes: c_int,
    pub planes: [AVDRMPlaneDescriptor; 4],
}

DRM layer descriptor.

Describes a single layer within a frame. This has the structure defined by its format, and will contain one or more planes.

Fields

format: u32

Format of the layer (DRM_FORMAT_*).

nb_planes: c_int

Number of planes in the layer.

This must match the number of planes required by format.

planes: [AVDRMPlaneDescriptor; 4]

Array of planes in this layer.

Trait Implementations

impl Clone for AVDRMLayerDescriptor[src]

impl Copy for AVDRMLayerDescriptor[src]

impl Debug for AVDRMLayerDescriptor[src]

impl Eq for AVDRMLayerDescriptor[src]

impl PartialEq<AVDRMLayerDescriptor> for AVDRMLayerDescriptor[src]

impl StructuralEq for AVDRMLayerDescriptor[src]

impl StructuralPartialEq for AVDRMLayerDescriptor[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> 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.