[][src]Struct ffmpeg_sys_next::AVDRMPlaneDescriptor

#[repr(C)]pub struct AVDRMPlaneDescriptor {
    pub object_index: c_int,
    pub offset: isize,
    pub pitch: isize,
}

DRM plane descriptor.

Describes a single plane of a layer, which is contained within a single object.

Fields

object_index: c_int

Index of the object containing this plane in the objects array of the enclosing frame descriptor.

offset: isize

Offset within that object of this plane.

pitch: isize

Pitch (linesize) of this plane.

Trait Implementations

impl Clone for AVDRMPlaneDescriptor[src]

impl Copy for AVDRMPlaneDescriptor[src]

impl Debug for AVDRMPlaneDescriptor[src]

impl Eq for AVDRMPlaneDescriptor[src]

impl PartialEq<AVDRMPlaneDescriptor> for AVDRMPlaneDescriptor[src]

impl StructuralEq for AVDRMPlaneDescriptor[src]

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