pub trait PrivateInvert<Rhs> {
type Output;
// Required method
fn private_invert(self, rhs: Rhs) -> Self::Output;
}Expand description
Doubly private! Called by invert to make the magic happen once its done the first step. The Rhs is what we’ve got so far.
Required Associated Types§
Required Methods§
fn private_invert(self, rhs: Rhs) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".