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

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

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors