pub trait LinearAlgebra { // Required method fn add(&self, other: &Self) -> Self; }
a trait for adding two vectors