#[repr(C)]pub struct _VAHdrMetaData {
pub metadata_type: VAProcHighDynamicRangeMetadataType,
pub metadata: *mut c_void,
pub metadata_size: u32,
pub reserved: [u32; 4],
}Expand description
\brief High Dynamic Range Meta Data.
Fields§
§metadata_type: VAProcHighDynamicRangeMetadataType\brief high dynamic range metadata type, HDR10 etc.
metadata: *mut c_void\brief Pointer to high dynamic range metadata.
The pointer could point to VAHdrMetaDataHDR10 or other HDR meta data.
metadata_size: u32\brief Size of high dynamic range metadata.
reserved: [u32; 4]\brief Reserved bytes for future use, must be zero
Trait Implementations§
Source§impl Clone for _VAHdrMetaData
impl Clone for _VAHdrMetaData
Source§fn clone(&self) -> _VAHdrMetaData
fn clone(&self) -> _VAHdrMetaData
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 _VAHdrMetaData
Source§impl Debug for _VAHdrMetaData
impl Debug for _VAHdrMetaData
Source§impl Default for _VAHdrMetaData
impl Default for _VAHdrMetaData
impl Eq for _VAHdrMetaData
Source§impl PartialEq for _VAHdrMetaData
impl PartialEq for _VAHdrMetaData
Source§fn eq(&self, other: &_VAHdrMetaData) -> bool
fn eq(&self, other: &_VAHdrMetaData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for _VAHdrMetaData
Auto Trait Implementations§
impl !Send for _VAHdrMetaData
impl !Sync for _VAHdrMetaData
impl Freeze for _VAHdrMetaData
impl RefUnwindSafe for _VAHdrMetaData
impl Unpin for _VAHdrMetaData
impl UnsafeUnpin for _VAHdrMetaData
impl UnwindSafe for _VAHdrMetaData
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