Struct ash::vk::BindVideoSessionMemoryInfoKHRBuilder
source · pub struct BindVideoSessionMemoryInfoKHRBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> BindVideoSessionMemoryInfoKHRBuilder<'a>
impl<'a> BindVideoSessionMemoryInfoKHRBuilder<'a>
pub fn memory_bind_index(self, memory_bind_index: u32) -> Self
pub fn memory(self, memory: DeviceMemory) -> Self
pub fn memory_offset(self, memory_offset: DeviceSize) -> Self
pub fn memory_size(self, memory_size: DeviceSize) -> Self
sourcepub fn build(self) -> BindVideoSessionMemoryInfoKHR
pub fn build(self) -> BindVideoSessionMemoryInfoKHR
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 BindVideoSessionMemoryInfoKHRBuilder<'a>
impl<'a> Deref for BindVideoSessionMemoryInfoKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for BindVideoSessionMemoryInfoKHRBuilder<'a>
impl<'a> RefUnwindSafe for BindVideoSessionMemoryInfoKHRBuilder<'a>
impl<'a> !Send for BindVideoSessionMemoryInfoKHRBuilder<'a>
impl<'a> !Sync for BindVideoSessionMemoryInfoKHRBuilder<'a>
impl<'a> Unpin for BindVideoSessionMemoryInfoKHRBuilder<'a>
impl<'a> UnwindSafe for BindVideoSessionMemoryInfoKHRBuilder<'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