#[repr(C)]pub struct VideoDecodeVP9PictureInfoKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub p_std_picture_info: *const StdVideoDecodeVP9PictureInfo,
pub reference_name_slot_indices: [i32; 3],
pub uncompressed_header_offset: u32,
pub compressed_header_offset: u32,
pub tiles_offset: u32,
pub _marker: PhantomData<&'a ()>,
}Expand description
Fields§
§s_type: StructureType§p_next: *const c_void§p_std_picture_info: *const StdVideoDecodeVP9PictureInfo§reference_name_slot_indices: [i32; 3]§uncompressed_header_offset: u32§compressed_header_offset: u32§tiles_offset: u32§_marker: PhantomData<&'a ()>Implementations§
Source§impl<'a> VideoDecodeVP9PictureInfoKHR<'a>
impl<'a> VideoDecodeVP9PictureInfoKHR<'a>
pub fn std_picture_info( self, std_picture_info: &'a StdVideoDecodeVP9PictureInfo, ) -> Self
pub fn reference_name_slot_indices( self, reference_name_slot_indices: [i32; 3], ) -> Self
pub fn uncompressed_header_offset(self, uncompressed_header_offset: u32) -> Self
pub fn compressed_header_offset(self, compressed_header_offset: u32) -> Self
pub fn tiles_offset(self, tiles_offset: u32) -> Self
Trait Implementations§
Source§impl<'a> Clone for VideoDecodeVP9PictureInfoKHR<'a>
impl<'a> Clone for VideoDecodeVP9PictureInfoKHR<'a>
Source§fn clone(&self) -> VideoDecodeVP9PictureInfoKHR<'a>
fn clone(&self) -> VideoDecodeVP9PictureInfoKHR<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for VideoDecodeVP9PictureInfoKHR<'a>
impl<'a> Debug for VideoDecodeVP9PictureInfoKHR<'a>
Source§impl Default for VideoDecodeVP9PictureInfoKHR<'_>
impl Default for VideoDecodeVP9PictureInfoKHR<'_>
Source§impl<'a> TaggedStructure for VideoDecodeVP9PictureInfoKHR<'a>
impl<'a> TaggedStructure for VideoDecodeVP9PictureInfoKHR<'a>
const STRUCTURE_TYPE: StructureType = StructureType::VIDEO_DECODE_VP9_PICTURE_INFO_KHR
impl<'a> Copy for VideoDecodeVP9PictureInfoKHR<'a>
impl ExtendsVideoDecodeInfoKHR for VideoDecodeVP9PictureInfoKHR<'_>
impl Send for VideoDecodeVP9PictureInfoKHR<'_>
impl Sync for VideoDecodeVP9PictureInfoKHR<'_>
Auto Trait Implementations§
impl<'a> Freeze for VideoDecodeVP9PictureInfoKHR<'a>
impl<'a> RefUnwindSafe for VideoDecodeVP9PictureInfoKHR<'a>
impl<'a> Unpin for VideoDecodeVP9PictureInfoKHR<'a>
impl<'a> UnwindSafe for VideoDecodeVP9PictureInfoKHR<'a>
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