pub trait DotProduct<T: Real> {
// Required method
fn dot(&self, rhs: &Self) -> T;
}
Expand description
This type can be used to produce a dot product
Required Methods§
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.