pub trait ProjRej<A>: Sized {
type Output;
// Required methods
fn proj(self, axis: A) -> Self::Output;
fn rej(self, axis: A) -> Self::Output;
fn proj_rej(self, axis: A) -> (Self::Output, Self::Output);
}Required Associated Types§
Required Methods§
fn proj(self, axis: A) -> Self::Output
fn rej(self, axis: A) -> Self::Output
fn proj_rej(self, axis: A) -> (Self::Output, Self::Output)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".