pub trait Vector {
type Scalar;
// Required methods
fn add_vec(&self, rhs: &Self) -> Self;
fn sub_vec(&self, rhs: &Self) -> Self;
fn mul_scalar(&self, rhs: Self::Scalar) -> Self;
}
Expand description
Mathematical Vector
§Description
Vector has two operations : addition, scalar multiplication. And a space of the vector should closed for that operations.
Required Associated Types§
Required Methods§
fn add_vec(&self, rhs: &Self) -> Self
fn sub_vec(&self, rhs: &Self) -> Self
fn mul_scalar(&self, rhs: Self::Scalar) -> 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.