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