[][src]Enum zcash_primitives::primitives::Rseed

pub enum Rseed {
    BeforeZip212(Fr),
    AfterZip212([u8; 32]),
}

Enum for note randomness before and after ZIP 212.

Before ZIP 212, the note commitment trapdoor rcm must be a scalar value. After ZIP 212, the note randomness rseed is a 32-byte sequence, used to derive both the note commitment trapdoor rcm and the ephemeral private key esk.

Variants

BeforeZip212(Fr)
AfterZip212([u8; 32])

Trait Implementations

impl Clone for Rseed[src]

impl Copy for Rseed[src]

impl Debug for Rseed[src]

Auto Trait Implementations

impl RefUnwindSafe for Rseed

impl Send for Rseed

impl Sync for Rseed

impl Unpin for Rseed

impl UnwindSafe for Rseed

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