#[repr(C)]pub struct BindVideoSessionMemoryInfoKHR {
pub s_type: StructureType,
pub p_next: *const c_void,
pub memory_bind_index: u32,
pub memory: DeviceMemory,
pub memory_offset: u64,
pub memory_size: u64,
}Expand description
VkBindVideoSessionMemoryInfoKHR
Provided by VK_KHR_video_queue.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_BIND_VIDEO_SESSION_MEMORY_INFO_KHR.
p_next: *const c_voidOptional, may be null.
memory_bind_index: u32§memory: DeviceMemory§memory_offset: u64§memory_size: u64Implementations§
Source§impl BindVideoSessionMemoryInfoKHR
impl BindVideoSessionMemoryInfoKHR
Sourcepub fn builder<'a>() -> BindVideoSessionMemoryInfoKHRBuilder<'a>
pub fn builder<'a>() -> BindVideoSessionMemoryInfoKHRBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for BindVideoSessionMemoryInfoKHR
impl Clone for BindVideoSessionMemoryInfoKHR
Source§fn clone(&self) -> BindVideoSessionMemoryInfoKHR
fn clone(&self) -> BindVideoSessionMemoryInfoKHR
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 moreimpl Copy for BindVideoSessionMemoryInfoKHR
Auto Trait Implementations§
impl Freeze for BindVideoSessionMemoryInfoKHR
impl RefUnwindSafe for BindVideoSessionMemoryInfoKHR
impl !Send for BindVideoSessionMemoryInfoKHR
impl !Sync for BindVideoSessionMemoryInfoKHR
impl Unpin for BindVideoSessionMemoryInfoKHR
impl UnsafeUnpin for BindVideoSessionMemoryInfoKHR
impl UnwindSafe for BindVideoSessionMemoryInfoKHR
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