#[repr(C)]pub struct DispatchIndirectCmd {
pub x: u32,
pub y: u32,
pub z: u32,
}
Expand description
Indirect dispatch command structure.
Fields§
§x: u32
Number of local workgroups in x dimension.
y: u32
Number of local workgroups in y dimension.
z: u32
Number of local workgroups in z dimension.
Trait Implementations§
Source§impl Clone for DispatchIndirectCmd
impl Clone for DispatchIndirectCmd
Source§fn clone(&self) -> DispatchIndirectCmd
fn clone(&self) -> DispatchIndirectCmd
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 DispatchIndirectCmd
impl Debug for DispatchIndirectCmd
impl Copy for DispatchIndirectCmd
Auto Trait Implementations§
impl Freeze for DispatchIndirectCmd
impl RefUnwindSafe for DispatchIndirectCmd
impl Send for DispatchIndirectCmd
impl Sync for DispatchIndirectCmd
impl Unpin for DispatchIndirectCmd
impl UnwindSafe for DispatchIndirectCmd
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