Struct ash::vk::VideoDecodeAV1PictureInfoKHR
source · #[repr(C)]pub struct VideoDecodeAV1PictureInfoKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub p_std_picture_info: *const StdVideoDecodeAV1PictureInfo,
pub reference_name_slot_indices: [i32; 7],
pub frame_header_offset: u32,
pub tile_count: u32,
pub p_tile_offsets: *const u32,
pub p_tile_sizes: *const u32,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§p_std_picture_info: *const StdVideoDecodeAV1PictureInfo
§reference_name_slot_indices: [i32; 7]
§frame_header_offset: u32
§tile_count: u32
§p_tile_offsets: *const u32
§p_tile_sizes: *const u32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> VideoDecodeAV1PictureInfoKHR<'a>
impl<'a> VideoDecodeAV1PictureInfoKHR<'a>
pub fn std_picture_info( self, std_picture_info: &'a StdVideoDecodeAV1PictureInfo, ) -> Self
pub fn reference_name_slot_indices( self, reference_name_slot_indices: [i32; 7], ) -> Self
pub fn frame_header_offset(self, frame_header_offset: u32) -> Self
pub fn tile_offsets(self, tile_offsets: &'a [u32]) -> Self
pub fn tile_sizes(self, tile_sizes: &'a [u32]) -> Self
Trait Implementations§
source§impl<'a> Clone for VideoDecodeAV1PictureInfoKHR<'a>
impl<'a> Clone for VideoDecodeAV1PictureInfoKHR<'a>
source§fn clone(&self) -> VideoDecodeAV1PictureInfoKHR<'a>
fn clone(&self) -> VideoDecodeAV1PictureInfoKHR<'a>
Returns a copy 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 VideoDecodeAV1PictureInfoKHR<'a>
impl<'a> Debug for VideoDecodeAV1PictureInfoKHR<'a>
source§impl Default for VideoDecodeAV1PictureInfoKHR<'_>
impl Default for VideoDecodeAV1PictureInfoKHR<'_>
source§impl<'a> TaggedStructure for VideoDecodeAV1PictureInfoKHR<'a>
impl<'a> TaggedStructure for VideoDecodeAV1PictureInfoKHR<'a>
const STRUCTURE_TYPE: StructureType = StructureType::VIDEO_DECODE_AV1_PICTURE_INFO_KHR
impl<'a> Copy for VideoDecodeAV1PictureInfoKHR<'a>
impl ExtendsVideoDecodeInfoKHR for VideoDecodeAV1PictureInfoKHR<'_>
impl Send for VideoDecodeAV1PictureInfoKHR<'_>
impl Sync for VideoDecodeAV1PictureInfoKHR<'_>
Auto Trait Implementations§
impl<'a> Freeze for VideoDecodeAV1PictureInfoKHR<'a>
impl<'a> RefUnwindSafe for VideoDecodeAV1PictureInfoKHR<'a>
impl<'a> Unpin for VideoDecodeAV1PictureInfoKHR<'a>
impl<'a> UnwindSafe for VideoDecodeAV1PictureInfoKHR<'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