Trait elliptic_curve::ops::Invert

source ·
pub trait Invert {
    type Output;

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

Perform an inversion on a field element (i.e. base field element or scalar)

Required Associated Types§

source

type Output

Field element type

Required Methods§

source

fn invert(&self) -> Self::Output

Invert a field element.

Implementors§