pub struct GroupCount {
pub x: u32,
pub y: u32,
pub z: u32,
}Expand description
A ze_group_count_t — the number of workgroups launched in each dimension.
Fields§
§x: u32Workgroups in X.
y: u32Workgroups in Y.
z: u32Workgroups in Z.
Implementations§
Trait Implementations§
Source§impl Clone for GroupCount
impl Clone for GroupCount
Source§fn clone(&self) -> GroupCount
fn clone(&self) -> GroupCount
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 GroupCount
Source§impl Debug for GroupCount
impl Debug for GroupCount
impl Eq for GroupCount
Source§impl PartialEq for GroupCount
impl PartialEq for GroupCount
Source§fn eq(&self, other: &GroupCount) -> bool
fn eq(&self, other: &GroupCount) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GroupCount
Auto Trait Implementations§
impl Freeze for GroupCount
impl RefUnwindSafe for GroupCount
impl Send for GroupCount
impl Sync for GroupCount
impl Unpin for GroupCount
impl UnsafeUnpin for GroupCount
impl UnwindSafe for GroupCount
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