pub struct VideoDecodeH264PictureInfoEXTBuilder<'a> { /* private fields */ }
Implementations§
Source§impl<'a> VideoDecodeH264PictureInfoEXTBuilder<'a>
impl<'a> VideoDecodeH264PictureInfoEXTBuilder<'a>
pub fn std_picture_info( self, std_picture_info: &'a StdVideoDecodeH264PictureInfo, ) -> Self
pub fn slices_data_offsets(self, slices_data_offsets: &'a [u32]) -> Self
Sourcepub fn push_next<T: ExtendsVideoDecodeH264PictureInfoEXT>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsVideoDecodeH264PictureInfoEXT>( self, next: &'a mut T, ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call builder.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
Sourcepub fn build(self) -> VideoDecodeH264PictureInfoEXT
pub fn build(self) -> VideoDecodeH264PictureInfoEXT
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
Source§impl<'a> Deref for VideoDecodeH264PictureInfoEXTBuilder<'a>
impl<'a> Deref for VideoDecodeH264PictureInfoEXTBuilder<'a>
Source§impl<'a> DerefMut for VideoDecodeH264PictureInfoEXTBuilder<'a>
impl<'a> DerefMut for VideoDecodeH264PictureInfoEXTBuilder<'a>
impl ExtendsVideoDecodeInfoKHR for VideoDecodeH264PictureInfoEXTBuilder<'_>
Auto Trait Implementations§
impl<'a> Freeze for VideoDecodeH264PictureInfoEXTBuilder<'a>
impl<'a> RefUnwindSafe for VideoDecodeH264PictureInfoEXTBuilder<'a>
impl<'a> !Send for VideoDecodeH264PictureInfoEXTBuilder<'a>
impl<'a> !Sync for VideoDecodeH264PictureInfoEXTBuilder<'a>
impl<'a> Unpin for VideoDecodeH264PictureInfoEXTBuilder<'a>
impl<'a> UnwindSafe for VideoDecodeH264PictureInfoEXTBuilder<'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