pub trait OuterProduct<T = Self>: VectorSpace {
type Output;
// Required method
fn outer(self, other: T) -> <Self as OuterProduct<T>>::Output;
}Expand description
This trait defines the outer product.
Required Associated Types§
Required Methods§
Sourcefn outer(self, other: T) -> <Self as OuterProduct<T>>::Output
fn outer(self, other: T) -> <Self as OuterProduct<T>>::Output
The outer product.
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.