Enum naga::SubgroupOperation
source · pub enum SubgroupOperation {
All = 0,
Any = 1,
Add = 2,
Mul = 3,
Min = 4,
Max = 5,
And = 6,
Or = 7,
Xor = 8,
}
Variants§
Trait Implementations§
source§impl Clone for SubgroupOperation
impl Clone for SubgroupOperation
source§fn clone(&self) -> SubgroupOperation
fn clone(&self) -> SubgroupOperation
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 SubgroupOperation
impl Debug for SubgroupOperation
source§impl Hash for SubgroupOperation
impl Hash for SubgroupOperation
source§impl Ord for SubgroupOperation
impl Ord for SubgroupOperation
source§fn cmp(&self, other: &SubgroupOperation) -> Ordering
fn cmp(&self, other: &SubgroupOperation) -> 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 SubgroupOperation
impl PartialEq for SubgroupOperation
source§fn eq(&self, other: &SubgroupOperation) -> bool
fn eq(&self, other: &SubgroupOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for SubgroupOperation
impl PartialOrd for SubgroupOperation
source§fn partial_cmp(&self, other: &SubgroupOperation) -> Option<Ordering>
fn partial_cmp(&self, other: &SubgroupOperation) -> 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 SubgroupOperation
impl Eq for SubgroupOperation
impl StructuralPartialEq for SubgroupOperation
Auto Trait Implementations§
impl Freeze for SubgroupOperation
impl RefUnwindSafe for SubgroupOperation
impl Send for SubgroupOperation
impl Sync for SubgroupOperation
impl Unpin for SubgroupOperation
impl UnwindSafe for SubgroupOperation
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
source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.