pub trait VectorAdd<T, const N: usize> {
// Required methods
fn add(self, other: Self) -> Self;
fn add_scalar(self, scalar: T) -> Self;
}Required Methods§
fn add(self, other: Self) -> Self
fn add_scalar(self, scalar: T) -> Self
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.