Struct ark_ec::models::twisted_edwards_extended::MontgomeryGroupAffine[][src]

pub struct MontgomeryGroupAffine<P: MontgomeryParameters> {
    pub x: P::BaseField,
    pub y: P::BaseField,
    // some fields omitted
}

Fields

x: P::BaseFieldy: P::BaseField

Implementations

impl<P: MontgomeryParameters> MontgomeryGroupAffine<P>[src]

pub fn new(x: P::BaseField, y: P::BaseField) -> Self[src]

Trait Implementations

impl<P: MontgomeryParameters> Clone for MontgomeryGroupAffine<P> where
    P: MontgomeryParameters
[src]

impl<P: MontgomeryParameters> Copy for MontgomeryGroupAffine<P> where
    P: MontgomeryParameters
[src]

impl<P: MontgomeryParameters> Debug for MontgomeryGroupAffine<P> where
    P: MontgomeryParameters
[src]

impl<P: MontgomeryParameters> Display for MontgomeryGroupAffine<P>[src]

impl<P: MontgomeryParameters> Eq for MontgomeryGroupAffine<P> where
    P: MontgomeryParameters
[src]

impl<P: MontgomeryParameters> Hash for MontgomeryGroupAffine<P> where
    P: MontgomeryParameters
[src]

impl<P: MontgomeryParameters> PartialEq<MontgomeryGroupAffine<P>> for MontgomeryGroupAffine<P> where
    P: MontgomeryParameters
[src]

Auto Trait Implementations

impl<P> Send for MontgomeryGroupAffine<P>

impl<P> Sync for MontgomeryGroupAffine<P>

impl<P> Unpin for MontgomeryGroupAffine<P> where
    P: Unpin,
    <P as ModelParameters>::BaseField: 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> ToString for T where
    T: Display + ?Sized
[src]

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>,