Skip to main content

Cross

Trait Cross 

Source
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§

Source

fn cross(self, rhs: Rhs) -> Self::Output

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§