Struct ash::vk::CopyMemoryIndirectCommandNVBuilder
source · pub struct CopyMemoryIndirectCommandNVBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> CopyMemoryIndirectCommandNVBuilder<'a>
impl<'a> CopyMemoryIndirectCommandNVBuilder<'a>
pub fn src_address(self, src_address: DeviceAddress) -> Self
pub fn dst_address(self, dst_address: DeviceAddress) -> Self
pub fn size(self, size: DeviceSize) -> Self
sourcepub fn build(self) -> CopyMemoryIndirectCommandNV
pub fn build(self) -> CopyMemoryIndirectCommandNV
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 CopyMemoryIndirectCommandNVBuilder<'a>
impl<'a> Deref for CopyMemoryIndirectCommandNVBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for CopyMemoryIndirectCommandNVBuilder<'a>
impl<'a> RefUnwindSafe for CopyMemoryIndirectCommandNVBuilder<'a>
impl<'a> Send for CopyMemoryIndirectCommandNVBuilder<'a>
impl<'a> Sync for CopyMemoryIndirectCommandNVBuilder<'a>
impl<'a> Unpin for CopyMemoryIndirectCommandNVBuilder<'a>
impl<'a> UnwindSafe for CopyMemoryIndirectCommandNVBuilder<'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