[][src]Struct wagyu_zcash::librustzcash::algebra::curve::bls12_381::Fq6

pub struct Fq6 {
    pub c0: Fq2,
    pub c1: Fq2,
    pub c2: Fq2,
}

An element of Fq6, represented by c0 + c1 * v + c2 * v^(2).

Fields

c0: Fq2c1: Fq2c2: Fq2

Methods

impl Fq6[src]

pub fn mul_by_nonresidue(&mut self)[src]

Multiply by quadratic nonresidue v.

pub fn mul_by_1(&mut self, c1: &Fq2)[src]

pub fn mul_by_01(&mut self, c0: &Fq2, c1: &Fq2)[src]

Trait Implementations

impl Clone for Fq6[src]

impl Copy for Fq6[src]

impl Debug for Fq6[src]

impl Display for Fq6[src]

impl Eq for Fq6[src]

impl Field for Fq6[src]

impl PartialEq<Fq6> for Fq6[src]

impl StructuralEq for Fq6[src]

impl StructuralPartialEq for Fq6[src]

Auto Trait Implementations

impl RefUnwindSafe for Fq6

impl Send for Fq6

impl Sync for Fq6

impl Unpin for Fq6

impl UnwindSafe for Fq6

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> Same<T> for T

type Output = T

Should always be Self

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