pub trait Inverse {
    type Output;

    // Required method
    fn inverse(&self) -> Result<Self::Output>;
}
Expand description

Unary operator for retrieving the inverse value.

Required Associated Types§

Required Methods§

Source

fn inverse(&self) -> Result<Self::Output>

Implementors§