#[repr(C)]pub struct DispatchArguments {
pub thread_group_count_x: u32,
pub thread_group_count_y: u32,
pub thread_group_count_z: u32,
}Expand description
Structure of arguments which can be used to execute dispatch calls indirectly
Fields§
§thread_group_count_x: u32§thread_group_count_y: u32§thread_group_count_z: u32Trait Implementations§
Source§impl Clone for DispatchArguments
impl Clone for DispatchArguments
Source§fn clone(&self) -> DispatchArguments
fn clone(&self) -> DispatchArguments
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DispatchArguments
Auto Trait Implementations§
impl Freeze for DispatchArguments
impl RefUnwindSafe for DispatchArguments
impl Send for DispatchArguments
impl Sync for DispatchArguments
impl Unpin for DispatchArguments
impl UnsafeUnpin for DispatchArguments
impl UnwindSafe for DispatchArguments
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