logo
pub trait ScalarInterface: 'static + Debug + Display + PartialEq<Self> + PartialOrd<Self> + Default + Copy + Clone + Num<Output = Self, Output = Self, Output = Self, Output = Self, Output = Self> + NumCast + Add<Self> + Sub<Self> + Mul<Self> + Div<Self> + Rem<Self> + AddAssign<Self> + SubAssign<Self> + MulAssign<Self> + DivAssign<Self> + RemAssign<Self> + NanLikeInterface { }
Expand description

Traits any element of a vector should implement.

Implementors