Enum spirv::GroupOperation
source · #[repr(u32)]pub enum GroupOperation {
Reduce = 0,
InclusiveScan = 1,
ExclusiveScan = 2,
ClusteredReduce = 3,
PartitionedReduceNV = 6,
PartitionedInclusiveScanNV = 7,
PartitionedExclusiveScanNV = 8,
}
Expand description
SPIR-V operand kind: GroupOperation
Variants§
Reduce = 0
InclusiveScan = 1
ExclusiveScan = 2
ClusteredReduce = 3
PartitionedReduceNV = 6
PartitionedInclusiveScanNV = 7
PartitionedExclusiveScanNV = 8
Implementations§
Trait Implementations§
source§impl Clone for GroupOperation
impl Clone for GroupOperation
source§fn clone(&self) -> GroupOperation
fn clone(&self) -> GroupOperation
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 GroupOperation
impl Debug for GroupOperation
source§impl FromStr for GroupOperation
impl FromStr for GroupOperation
source§impl Hash for GroupOperation
impl Hash for GroupOperation
source§impl Ord for GroupOperation
impl Ord for GroupOperation
source§fn cmp(&self, other: &GroupOperation) -> Ordering
fn cmp(&self, other: &GroupOperation) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for GroupOperation
impl PartialEq for GroupOperation
source§fn eq(&self, other: &GroupOperation) -> bool
fn eq(&self, other: &GroupOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for GroupOperation
impl PartialOrd for GroupOperation
source§fn partial_cmp(&self, other: &GroupOperation) -> Option<Ordering>
fn partial_cmp(&self, other: &GroupOperation) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for GroupOperation
impl Eq for GroupOperation
impl StructuralPartialEq for GroupOperation
Auto Trait Implementations§
impl Freeze for GroupOperation
impl RefUnwindSafe for GroupOperation
impl Send for GroupOperation
impl Sync for GroupOperation
impl Unpin for GroupOperation
impl UnwindSafe for GroupOperation
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