VectorAssign

Trait VectorAssign 

Source
pub trait VectorAssign<Scalar>: Vector<Scalar> + VectorAssignOps<Self, Scalar> { }
Expand description

The trait for Vector types which also implement assignment operators.

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, S> VectorAssign<S> for T
where T: Vector<S> + VectorAssignOps<Self, S>,