Struct ash::vk::MicromapCreateInfoEXTBuilder
source · pub struct MicromapCreateInfoEXTBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> MicromapCreateInfoEXTBuilder<'a>
impl<'a> MicromapCreateInfoEXTBuilder<'a>
pub fn create_flags(self, create_flags: MicromapCreateFlagsEXT) -> Self
pub fn buffer(self, buffer: Buffer) -> Self
pub fn offset(self, offset: DeviceSize) -> Self
pub fn size(self, size: DeviceSize) -> Self
pub fn ty(self, ty: MicromapTypeEXT) -> Self
pub fn device_address(self, device_address: DeviceAddress) -> Self
sourcepub fn build(self) -> MicromapCreateInfoEXT
pub fn build(self) -> MicromapCreateInfoEXT
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 MicromapCreateInfoEXTBuilder<'a>
impl<'a> Deref for MicromapCreateInfoEXTBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for MicromapCreateInfoEXTBuilder<'a>
impl<'a> RefUnwindSafe for MicromapCreateInfoEXTBuilder<'a>
impl<'a> !Send for MicromapCreateInfoEXTBuilder<'a>
impl<'a> !Sync for MicromapCreateInfoEXTBuilder<'a>
impl<'a> Unpin for MicromapCreateInfoEXTBuilder<'a>
impl<'a> UnwindSafe for MicromapCreateInfoEXTBuilder<'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