Trait Vector

Source
pub trait Vector<T>
where T: Numeric,
{ // Required method fn dot(&self, rhs: Self) -> T; }

Required Methods§

Source

fn dot(&self, rhs: Self) -> T

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> Vector<T> for V2<T>
where T: Numeric,

Source§

impl<T> Vector<T> for V3<T>
where T: Numeric,

Source§

impl<T> Vector<T> for V4<T>
where T: Numeric,