logo
pub struct IsogenyCoefficients<F: Field + AddAssign + Mul<Output = F>> {
    pub xnum: &'static [F],
    pub xden: &'static [F],
    pub ynum: &'static [F],
    pub yden: &'static [F],
}
This is supported on crate feature hash2curve only.
Expand description

The coefficients for mapping from one isogenous curve to another

Fields

xnum: &'static [F]

The coefficients for the x numerator

xden: &'static [F]

The coefficients for the x denominator

ynum: &'static [F]

The coefficients for the y numerator

yden: &'static [F]

The coefficients for the x denominator

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.