#[repr(C)]pub struct TraceRaysIndirectCommandKHR {
pub width: u32,
pub height: u32,
pub depth: u32,
}
Expand description
Structure specifying the parameters of an indirect ray tracing command
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkTraceRaysIndirectCommandKHR.html
Fields§
§width: u32
width is the width of the ray trace query dimensions.
height: u32
height is height of the ray trace query dimensions.
depth: u32
depth is depth of the ray trace query dimensions.
Trait Implementations§
source§impl Clone for TraceRaysIndirectCommandKHR
impl Clone for TraceRaysIndirectCommandKHR
source§fn clone(&self) -> TraceRaysIndirectCommandKHR
fn clone(&self) -> TraceRaysIndirectCommandKHR
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TraceRaysIndirectCommandKHR
impl Debug for TraceRaysIndirectCommandKHR
source§impl Default for TraceRaysIndirectCommandKHR
impl Default for TraceRaysIndirectCommandKHR
source§fn default() -> TraceRaysIndirectCommandKHR
fn default() -> TraceRaysIndirectCommandKHR
Returns the “default value” for a type. Read more
source§impl From<TraceRaysIndirectCommandKHR> for UVec3
impl From<TraceRaysIndirectCommandKHR> for UVec3
source§fn from(v: TraceRaysIndirectCommandKHR) -> Self
fn from(v: TraceRaysIndirectCommandKHR) -> Self
Converts to this type from the input type.
source§impl From<UVec3> for TraceRaysIndirectCommandKHR
impl From<UVec3> for TraceRaysIndirectCommandKHR
impl Copy for TraceRaysIndirectCommandKHR
impl Pod for TraceRaysIndirectCommandKHR
Auto Trait Implementations§
impl Freeze for TraceRaysIndirectCommandKHR
impl RefUnwindSafe for TraceRaysIndirectCommandKHR
impl Send for TraceRaysIndirectCommandKHR
impl Sync for TraceRaysIndirectCommandKHR
impl Unpin for TraceRaysIndirectCommandKHR
impl UnwindSafe for TraceRaysIndirectCommandKHR
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
source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.