pub enum SubgroupOperation {
    All = 0,
    Any = 1,
    Add = 2,
    Mul = 3,
    Min = 4,
    Max = 5,
    And = 6,
    Or = 7,
    Xor = 8,
}Variants§
Implementations§
Source§impl SubgroupOperation
 
impl SubgroupOperation
const fn required_operations(&self) -> SubgroupOperationSet
Trait Implementations§
Source§impl Clone for SubgroupOperation
 
impl Clone for SubgroupOperation
Source§fn clone(&self) -> SubgroupOperation
 
fn clone(&self) -> SubgroupOperation
Returns a duplicate 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§impl PartialOrd for SubgroupOperation
 
impl PartialOrd for SubgroupOperation
impl 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<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
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§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.