Struct ark_ec::models::mnt6::g2::AteDoubleCoefficients[][src]

pub struct AteDoubleCoefficients<P: MNT6Parameters> {
    pub c_h: Fp3<P::Fp3Params>,
    pub c_4c: Fp3<P::Fp3Params>,
    pub c_j: Fp3<P::Fp3Params>,
    pub c_l: Fp3<P::Fp3Params>,
}

Fields

c_h: Fp3<P::Fp3Params>c_4c: Fp3<P::Fp3Params>c_j: Fp3<P::Fp3Params>c_l: Fp3<P::Fp3Params>

Trait Implementations

impl<P: MNT6Parameters> Clone for AteDoubleCoefficients<P> where
    P: MNT6Parameters
[src]

impl<P: MNT6Parameters> Debug for AteDoubleCoefficients<P> where
    P: MNT6Parameters
[src]

impl<P: MNT6Parameters> Eq for AteDoubleCoefficients<P> where
    P: MNT6Parameters
[src]

impl<P: MNT6Parameters> PartialEq<AteDoubleCoefficients<P>> for AteDoubleCoefficients<P> where
    P: MNT6Parameters
[src]

Auto Trait Implementations

impl<P> Send for AteDoubleCoefficients<P>

impl<P> Sync for AteDoubleCoefficients<P>

impl<P> Unpin for AteDoubleCoefficients<P> where
    <P as MNT6Parameters>::Fp: Unpin,
    <P as MNT6Parameters>::Fp3Params: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,