Trait xyzvec::VecInner

source ·
pub trait VecInner: Clone + Copy + Sized + Debug + Display + Add<Output = Self> + AddAssign + Sub<Output = Self> + SubAssign + Mul<Output = Self> + Div<Output = Self> + Neg<Output = Self> { }

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<V: Clone + Copy + Sized + Debug + Display + Add<Output = Self> + AddAssign + Sub<Output = Self> + SubAssign + Mul<Output = Self> + Div<Output = Self> + Neg<Output = Self>> VecInner for V