#[repr(C)]pub struct IndirectDispatchArgs {
pub num_groups_x: u32,
pub num_groups_y: u32,
pub num_groups_z: u32,
}Expand description
Arguments for an indirect dispatch (read from a buffer on the GPU).
Fields§
§num_groups_x: u32§num_groups_y: u32§num_groups_z: u32Implementations§
Trait Implementations§
Source§impl Clone for IndirectDispatchArgs
impl Clone for IndirectDispatchArgs
Source§fn clone(&self) -> IndirectDispatchArgs
fn clone(&self) -> IndirectDispatchArgs
Returns a duplicate 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 IndirectDispatchArgs
impl Debug for IndirectDispatchArgs
impl Copy for IndirectDispatchArgs
Auto Trait Implementations§
impl Freeze for IndirectDispatchArgs
impl RefUnwindSafe for IndirectDispatchArgs
impl Send for IndirectDispatchArgs
impl Sync for IndirectDispatchArgs
impl Unpin for IndirectDispatchArgs
impl UnsafeUnpin for IndirectDispatchArgs
impl UnwindSafe for IndirectDispatchArgs
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