pub trait ArrayNumericType
where Self: Copy + Clone + Zero + Mul<Self, Output = Self> + Add<Self, Output = Self> + AddAssign<Self>,
{ }

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> ArrayNumericType for T
where T: Copy + Clone + Zero + Mul<T, Output = Self> + Add<Self, Output = Self> + AddAssign<Self>,