pub trait Inverse {
    type Output;

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

Unary operator for retrieving the inverse value.

Required Associated Types§

Required Methods§

source

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

Implementors§

source§

impl<E> Inverse for Field<E>where E: Environment,

§

type Output = Field<E>

source§

impl<E: Environment> Inverse for Scalar<E>

§

type Output = Scalar<E>