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§

type Output

Required Methods§

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

Implementors§

§

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

§

type Output = Field<E>

§

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

§

type Output = Scalar<E>