#[repr(u8)]pub enum WaveReduceType {
PrefixSum = 0,
ReduceAdd = 1,
ReduceMin = 2,
ReduceMax = 3,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for WaveReduceType
impl Clone for WaveReduceType
Source§fn clone(&self) -> WaveReduceType
fn clone(&self) -> WaveReduceType
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 WaveReduceType
Source§impl Debug for WaveReduceType
impl Debug for WaveReduceType
impl Eq for WaveReduceType
Source§impl PartialEq for WaveReduceType
impl PartialEq for WaveReduceType
Source§fn eq(&self, other: &WaveReduceType) -> bool
fn eq(&self, other: &WaveReduceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WaveReduceType
Auto Trait Implementations§
impl Freeze for WaveReduceType
impl RefUnwindSafe for WaveReduceType
impl Send for WaveReduceType
impl Sync for WaveReduceType
impl Unpin for WaveReduceType
impl UnsafeUnpin for WaveReduceType
impl UnwindSafe for WaveReduceType
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