[][src]Struct wagyu_zcash::public_key::SaplingFullViewingKey

pub struct SaplingFullViewingKey<N: ZcashNetwork> { /* fields omitted */ }

Methods

impl<N: ZcashNetwork> SaplingFullViewingKey<N>[src]

pub fn from_spending_key(
    key: &SaplingSpendingKey<N>,
    params: &<Bls12 as JubjubEngine>::Params
) -> Self
[src]

pub fn read<R: Read>(
    reader: R,
    params: &<Bls12 as JubjubEngine>::Params
) -> Result<Self>
[src]

pub fn write<W: Write>(&self, writer: W) -> Result<()>[src]

pub fn to_bytes(&self) -> [u8; 96][src]

Trait Implementations

impl<N: ZcashNetwork> Clone for SaplingFullViewingKey<N>[src]

impl<N: Debug + ZcashNetwork> Debug for SaplingFullViewingKey<N>[src]

impl<N: ZcashNetwork> Eq for SaplingFullViewingKey<N>[src]

impl<N: ZcashNetwork> PartialEq<SaplingFullViewingKey<N>> for SaplingFullViewingKey<N>[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for SaplingFullViewingKey<N> where
    N: RefUnwindSafe

impl<N> Send for SaplingFullViewingKey<N>

impl<N> Sync for SaplingFullViewingKey<N>

impl<N> Unpin for SaplingFullViewingKey<N> where
    N: Unpin

impl<N> UnwindSafe for SaplingFullViewingKey<N> where
    N: 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<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>,