Struct ffmpeg_sys_next::AVDRMPlaneDescriptor
source · [−]#[repr(C)]pub struct AVDRMPlaneDescriptor {
pub object_index: c_int,
pub offset: isize,
pub pitch: isize,
}Expand description
DRM plane descriptor.
Describes a single plane of a layer, which is contained within a single object.
Fields
object_index: c_intIndex of the object containing this plane in the objects array of the enclosing frame descriptor.
offset: isizeOffset within that object of this plane.
pitch: isizePitch (linesize) of this plane.
Trait Implementations
sourceimpl Clone for AVDRMPlaneDescriptor
impl Clone for AVDRMPlaneDescriptor
sourcefn clone(&self) -> AVDRMPlaneDescriptor
fn clone(&self) -> AVDRMPlaneDescriptor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AVDRMPlaneDescriptor
impl Debug for AVDRMPlaneDescriptor
sourceimpl PartialEq<AVDRMPlaneDescriptor> for AVDRMPlaneDescriptor
impl PartialEq<AVDRMPlaneDescriptor> for AVDRMPlaneDescriptor
sourcefn eq(&self, other: &AVDRMPlaneDescriptor) -> bool
fn eq(&self, other: &AVDRMPlaneDescriptor) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AVDRMPlaneDescriptor) -> bool
fn ne(&self, other: &AVDRMPlaneDescriptor) -> bool
This method tests for !=.
impl Copy for AVDRMPlaneDescriptor
impl Eq for AVDRMPlaneDescriptor
impl StructuralEq for AVDRMPlaneDescriptor
impl StructuralPartialEq for AVDRMPlaneDescriptor
Auto Trait Implementations
impl RefUnwindSafe for AVDRMPlaneDescriptor
impl Send for AVDRMPlaneDescriptor
impl Sync for AVDRMPlaneDescriptor
impl Unpin for AVDRMPlaneDescriptor
impl UnwindSafe for AVDRMPlaneDescriptor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more