[][src]Struct fawkes_crypto_pairing_ce::bn256::Fq12

pub struct Fq12 {
    pub c0: Fq6,
    pub c1: Fq6,
}

An element of Fq12, represented by c0 + c1 * w.

Fields

c0: Fq6c1: Fq6

Implementations

impl Fq12[src]

pub fn conjugate(&mut self)[src]

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

pub fn mul_by_034(&mut self, c0: &Fq2, c3: &Fq2, c4: &Fq2)[src]

Trait Implementations

impl Clone for Fq12[src]

impl Copy for Fq12[src]

impl Debug for Fq12[src]

impl Display for Fq12[src]

impl Eq for Fq12[src]

impl Field for Fq12[src]

impl PartialEq<Fq12> for Fq12[src]

impl Rand for Fq12[src]

impl StructuralEq for Fq12[src]

impl StructuralPartialEq for Fq12[src]

Auto Trait Implementations

impl RefUnwindSafe for Fq12

impl Send for Fq12

impl Sync for Fq12

impl Unpin for Fq12

impl UnwindSafe for Fq12

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.