Struct ash::vk::TraceRaysIndirectCommandKHRBuilder
source · pub struct TraceRaysIndirectCommandKHRBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> TraceRaysIndirectCommandKHRBuilder<'a>
impl<'a> TraceRaysIndirectCommandKHRBuilder<'a>
pub fn width(self, width: u32) -> Self
pub fn height(self, height: u32) -> Self
pub fn depth(self, depth: u32) -> Self
sourcepub fn build(self) -> TraceRaysIndirectCommandKHR
pub fn build(self) -> TraceRaysIndirectCommandKHR
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 TraceRaysIndirectCommandKHRBuilder<'a>
impl<'a> Deref for TraceRaysIndirectCommandKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for TraceRaysIndirectCommandKHRBuilder<'a>
impl<'a> RefUnwindSafe for TraceRaysIndirectCommandKHRBuilder<'a>
impl<'a> Send for TraceRaysIndirectCommandKHRBuilder<'a>
impl<'a> Sync for TraceRaysIndirectCommandKHRBuilder<'a>
impl<'a> Unpin for TraceRaysIndirectCommandKHRBuilder<'a>
impl<'a> UnwindSafe for TraceRaysIndirectCommandKHRBuilder<'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