pub trait LeftCancellativeCompositionSignature: CompositionSignature {
// Required method
fn try_left_difference(
&self,
a: &Self::Set,
b: &Self::Set,
) -> Option<Self::Set>;
}Expand description
When compose(a, x) = compose(a, y) implies x = y for all a, x, y.
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.