Struct snarkvm_wasm::marlin_pc::Randomness[][src]

pub struct Randomness<E> where
    E: PairingEngine
{ /* fields omitted */ }

Randomness hides the polynomial inside a commitment. It is output by KZG10::commit.

Trait Implementations

impl<'a, E> Add<&'a Randomness<E>> for Randomness<E> where
    E: PairingEngine
[src]

type Output = Randomness<E>

The resulting type after applying the + operator.

impl<'a, E> Add<(<E as PairingEngine>::Fr, &'a Randomness<E>)> for Randomness<E> where
    E: PairingEngine
[src]

type Output = Randomness<E>

The resulting type after applying the + operator.

impl<'a, E> AddAssign<&'a Randomness<E>> for Randomness<E> where
    E: PairingEngine
[src]

impl<'a, E> AddAssign<(<E as PairingEngine>::Fr, &'a Randomness<E>)> for Randomness<E> where
    E: PairingEngine
[src]

impl<E> CanonicalDeserialize for Randomness<E> where
    E: PairingEngine
[src]

impl<E> CanonicalSerialize for Randomness<E> where
    E: PairingEngine
[src]

impl<E> Clone for Randomness<E> where
    E: PairingEngine
[src]

impl<E> Debug for Randomness<E> where
    E: PairingEngine
[src]

impl<E> Default for Randomness<E> where
    E: PairingEngine
[src]

impl<E> Eq for Randomness<E> where
    E: PairingEngine
[src]

impl<E> FromBytes for Randomness<E> where
    E: PairingEngine
[src]

impl<E> Hash for Randomness<E> where
    E: PairingEngine
[src]

impl<E> PCRandomness for Randomness<E> where
    E: PairingEngine
[src]

impl<E> PartialEq<Randomness<E>> for Randomness<E> where
    E: PairingEngine
[src]

impl<E> ToBytes for Randomness<E> where
    E: PairingEngine
[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for Randomness<E> where
    <E as PairingEngine>::Fr: RefUnwindSafe

impl<E> Send for Randomness<E>

impl<E> Sync for Randomness<E>

impl<E> Unpin for Randomness<E> where
    <E as PairingEngine>::Fr: Unpin

impl<E> UnwindSafe for Randomness<E> where
    <E as PairingEngine>::Fr: UnwindSafe

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

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