pub trait Inverse {
    type Output;

    fn inverse(&self) -> Result<Self::Output, Error>;
}
Expand description

Unary operator for retrieving the inverse value.

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Returns the inverse of self.

Returns the inverse of self.

Implementors§