pub trait ConjTy: Copy + Debug {
type Flip: ConjTy;
const CONJ: Conj;
// Required method
fn flip(self) -> Self::Flip;
}Expand description
Similar to Conj, but determined at compile time instead of runtime.
Required Associated Types§
Required Associated Constants§
Required Methods§
Object Safety§
This trait is not object safe.