PrivateInvert

Trait PrivateInvert 

Source
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§

Source

fn private_invert(self, rhs: Rhs) -> Self::Output

Implementors§