Trait ConjTy
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 Constants§
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.