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