pub enum ReduceFnExpand {
Sum(<Sum as CubeType>::ExpandType),
Prod(<Prod as CubeType>::ExpandType),
Mean(<Mean as CubeType>::ExpandType),
MaxAbs(<MaxAbs as CubeType>::ExpandType),
ArgMax(<ArgMax as CubeType>::ExpandType),
ArgMin(<ArgMin as CubeType>::ExpandType),
Max(<Max as CubeType>::ExpandType),
Min(<Min as CubeType>::ExpandType),
}
Variants§
Sum(<Sum as CubeType>::ExpandType)
Prod(<Prod as CubeType>::ExpandType)
Mean(<Mean as CubeType>::ExpandType)
MaxAbs(<MaxAbs as CubeType>::ExpandType)
ArgMax(<ArgMax as CubeType>::ExpandType)
ArgMin(<ArgMin as CubeType>::ExpandType)
Max(<Max as CubeType>::ExpandType)
Min(<Min as CubeType>::ExpandType)
Trait Implementations§
Source§impl Clone for ReduceFnExpand
impl Clone for ReduceFnExpand
Source§impl CubeDebug for ReduceFnExpand
impl CubeDebug for ReduceFnExpand
Source§fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
Set the debug name of this type’s expansion. Should do nothing for types that don’t appear
at runtime
Auto Trait Implementations§
impl Freeze for ReduceFnExpand
impl RefUnwindSafe for ReduceFnExpand
impl Send for ReduceFnExpand
impl Sync for ReduceFnExpand
impl Unpin for ReduceFnExpand
impl UnwindSafe for ReduceFnExpand
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