#[repr(C)]pub struct VideoSessionCreateInfoKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub queue_family_index: u32,
pub flags: VideoSessionCreateFlagsKHR,
pub p_video_profile: *const VideoProfileInfoKHR<'a>,
pub picture_format: Format,
pub max_coded_extent: Extent2D,
pub reference_picture_format: Format,
pub max_dpb_slots: u32,
pub max_active_reference_pictures: u32,
pub p_std_header_version: *const ExtensionProperties,
pub _marker: PhantomData<&'a ()>,
}Expand description
Fields§
§s_type: StructureType§p_next: *const c_void§queue_family_index: u32§flags: VideoSessionCreateFlagsKHR§p_video_profile: *const VideoProfileInfoKHR<'a>§picture_format: Format§max_coded_extent: Extent2D§reference_picture_format: Format§max_dpb_slots: u32§max_active_reference_pictures: u32§p_std_header_version: *const ExtensionProperties§_marker: PhantomData<&'a ()>Implementations§
Source§impl<'a> VideoSessionCreateInfoKHR<'a>
impl<'a> VideoSessionCreateInfoKHR<'a>
pub fn queue_family_index( self, queue_family_index: u32, ) -> VideoSessionCreateInfoKHR<'a>
pub fn flags( self, flags: VideoSessionCreateFlagsKHR, ) -> VideoSessionCreateInfoKHR<'a>
pub fn video_profile( self, video_profile: &'a VideoProfileInfoKHR<'a>, ) -> VideoSessionCreateInfoKHR<'a>
pub fn picture_format( self, picture_format: Format, ) -> VideoSessionCreateInfoKHR<'a>
pub fn max_coded_extent( self, max_coded_extent: Extent2D, ) -> VideoSessionCreateInfoKHR<'a>
pub fn reference_picture_format( self, reference_picture_format: Format, ) -> VideoSessionCreateInfoKHR<'a>
pub fn max_dpb_slots(self, max_dpb_slots: u32) -> VideoSessionCreateInfoKHR<'a>
pub fn max_active_reference_pictures( self, max_active_reference_pictures: u32, ) -> VideoSessionCreateInfoKHR<'a>
pub fn std_header_version( self, std_header_version: &'a ExtensionProperties, ) -> VideoSessionCreateInfoKHR<'a>
Sourcepub fn push_next<T>(self, next: &'a mut T) -> VideoSessionCreateInfoKHR<'a>where
T: ExtendsVideoSessionCreateInfoKHR + ?Sized,
pub fn push_next<T>(self, next: &'a mut T) -> VideoSessionCreateInfoKHR<'a>where
T: ExtendsVideoSessionCreateInfoKHR + ?Sized,
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 x.push_next(&mut D), then the
chain will look like A -> D -> B -> C.
Trait Implementations§
Source§impl<'a> Clone for VideoSessionCreateInfoKHR<'a>
impl<'a> Clone for VideoSessionCreateInfoKHR<'a>
Source§fn clone(&self) -> VideoSessionCreateInfoKHR<'a>
fn clone(&self) -> VideoSessionCreateInfoKHR<'a>
Returns a duplicate of the value. Read more
1.0.0§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 VideoSessionCreateInfoKHR<'a>
impl<'a> Debug for VideoSessionCreateInfoKHR<'a>
Source§impl Default for VideoSessionCreateInfoKHR<'_>
impl Default for VideoSessionCreateInfoKHR<'_>
Source§fn default() -> VideoSessionCreateInfoKHR<'_>
fn default() -> VideoSessionCreateInfoKHR<'_>
Returns the “default value” for a type. Read more
Source§impl<'a> TaggedStructure for VideoSessionCreateInfoKHR<'a>
impl<'a> TaggedStructure for VideoSessionCreateInfoKHR<'a>
const STRUCTURE_TYPE: StructureType = StructureType::VIDEO_SESSION_CREATE_INFO_KHR
impl<'a> Copy for VideoSessionCreateInfoKHR<'a>
impl Send for VideoSessionCreateInfoKHR<'_>
impl Sync for VideoSessionCreateInfoKHR<'_>
Auto Trait Implementations§
impl<'a> Freeze for VideoSessionCreateInfoKHR<'a>
impl<'a> RefUnwindSafe for VideoSessionCreateInfoKHR<'a>
impl<'a> Unpin for VideoSessionCreateInfoKHR<'a>
impl<'a> UnwindSafe for VideoSessionCreateInfoKHR<'a>
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)