logo
pub trait Cross<T = Self> {
    type Output;

    fn cross(self, other: T) -> Self::Output;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors