[][src]Struct snarkos_utilities::biginteger::biginteger::BigInteger64

pub struct BigInteger64(pub [u64; 1]);

Implementations

impl BigInteger64[src]

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

Trait Implementations

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

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

impl BigInteger for BigInteger64[src]

fn from_bits(bits: &[bool]) -> Self[src]

Constructs a BigInteger by parsing a vector of bits in big endian format and transforms it into a vector of little endian u64 elements.

impl Clone for BigInteger64[src]

impl Copy for BigInteger64[src]

impl Debug for BigInteger64[src]

impl Default for BigInteger64[src]

impl Display for BigInteger64[src]

impl Distribution<BigInteger64> for Standard[src]

impl Eq for BigInteger64[src]

impl From<u64> for BigInteger64[src]

impl FromBytes for BigInteger64[src]

impl Hash for BigInteger64[src]

impl Ord for BigInteger64[src]

impl PartialEq<BigInteger64> for BigInteger64[src]

impl PartialOrd<BigInteger64> for BigInteger64[src]

impl StructuralEq for BigInteger64[src]

impl StructuralPartialEq for BigInteger64[src]

impl ToBytes for BigInteger64[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>,