#[repr(C)]pub struct _VAImageFormat {
pub fourcc: u32,
pub byte_order: u32,
pub bits_per_pixel: u32,
pub depth: u32,
pub red_mask: u32,
pub green_mask: u32,
pub blue_mask: u32,
pub alpha_mask: u32,
pub va_reserved: [u32; 4],
}Fields§
§fourcc: u32§byte_order: u32§bits_per_pixel: u32§depth: u32§red_mask: u32§green_mask: u32§blue_mask: u32§alpha_mask: u32§va_reserved: [u32; 4]\brief Reserved bytes for future use, must be zero
Trait Implementations§
Source§impl Clone for _VAImageFormat
impl Clone for _VAImageFormat
Source§fn clone(&self) -> _VAImageFormat
fn clone(&self) -> _VAImageFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _VAImageFormat
Source§impl Debug for _VAImageFormat
impl Debug for _VAImageFormat
Source§impl Default for _VAImageFormat
impl Default for _VAImageFormat
Source§fn default() -> _VAImageFormat
fn default() -> _VAImageFormat
Returns the “default value” for a type. Read more
impl Eq for _VAImageFormat
Source§impl PartialEq for _VAImageFormat
impl PartialEq for _VAImageFormat
Source§fn eq(&self, other: &_VAImageFormat) -> bool
fn eq(&self, other: &_VAImageFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for _VAImageFormat
Auto Trait Implementations§
impl Freeze for _VAImageFormat
impl RefUnwindSafe for _VAImageFormat
impl Send for _VAImageFormat
impl Sync for _VAImageFormat
impl Unpin for _VAImageFormat
impl UnsafeUnpin for _VAImageFormat
impl UnwindSafe for _VAImageFormat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more