Struct substrate_bn::Gt[][src]

#[repr(C)]
pub struct Gt(_);

Implementations

impl Gt[src]

pub fn one() -> Self[src]

pub fn pow(&self, exp: Fr) -> Self[src]

pub fn inverse(&self) -> Option<Self>[src]

pub fn final_exponentiation(&self) -> Option<Self>[src]

Trait Implementations

impl Clone for Gt[src]

impl Copy for Gt[src]

impl Eq for Gt[src]

impl Mul<Gt> for Gt[src]

type Output = Gt

The resulting type after applying the * operator.

impl PartialEq<Gt> for Gt[src]

impl StructuralEq for Gt[src]

impl StructuralPartialEq for Gt[src]

Auto Trait Implementations

impl RefUnwindSafe for Gt

impl Send for Gt

impl Sync for Gt

impl Unpin for Gt

impl UnwindSafe for Gt

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