Struct ark_ff::biginteger::BigInteger128[][src]

pub struct BigInteger128(pub [u64; 2]);

Implementations

impl BigInteger128[src]

pub const fn new(value: [u64; 2]) -> Self[src]

Trait Implementations

impl AsMut<[u64]> for BigInteger128[src]

impl AsRef<[u64]> for BigInteger128[src]

impl BigInteger for BigInteger128[src]

impl CanonicalDeserialize for BigInteger128[src]

impl CanonicalSerialize for BigInteger128[src]

impl Clone for BigInteger128[src]

impl Copy for BigInteger128[src]

impl Debug for BigInteger128[src]

impl Default for BigInteger128[src]

impl Display for BigInteger128[src]

impl Eq for BigInteger128[src]

impl From<u64> for BigInteger128[src]

impl FromBytes for BigInteger128[src]

impl Hash for BigInteger128[src]

impl Ord for BigInteger128[src]

impl PartialEq<BigInteger128> for BigInteger128[src]

impl PartialOrd<BigInteger128> for BigInteger128[src]

impl StructuralEq for BigInteger128[src]

impl StructuralPartialEq for BigInteger128[src]

impl ToBytes for BigInteger128[src]

impl Zeroize for BigInteger128[src]

Auto Trait Implementations

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<T> UniformRand for T where
    Standard: Distribution<T>, 
[src]

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