pub trait DotProduct<Rhs>: Sized + Copy {
type Result: SimdRealField;
// Required method
fn gdot(&self, rhs: Rhs) -> Self::Result;
}Expand description
Trait for computing generalized dot products.
Required Associated Types§
Sourcetype Result: SimdRealField
type Result: SimdRealField
The result type of the 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.