pub trait Cross<Rhs = Self> {
type Output;
// Required method
fn cross(self, rhs: Rhs) -> Self::Output;
}Expand description
Perform the cross product of vectors
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".