[][src]Struct wagyu_zcash::librustzcash::zip32::ExtendedSpendingKey

pub struct ExtendedSpendingKey<N: ZcashNetwork> {
    pub expsk: SaplingSpendingKey<N>,
    // some fields omitted
}

Represents a Sapling extended spending key

Fields

expsk: SaplingSpendingKey<N>

Methods

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

pub fn master(seed: &[u8]) -> Self[src]

pub fn read<R: Read>(reader: R) -> Result<Self>[src]

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

pub fn from_path(master: &Self, path: &[ChildIndex]) -> Self[src]

Returns the child key corresponding to the path derived from the master key

pub fn derive_child(&self, i: ChildIndex) -> Self[src]

pub fn default_address(
    &self
) -> Result<(DiversifierIndex, PaymentAddress<Bls12>), ()>
[src]

Trait Implementations

impl<N: Clone + ZcashNetwork> Clone for ExtendedSpendingKey<N>[src]

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

impl<'a, N: ZcashNetwork> From<&'a ExtendedSpendingKey<N>> for ExtendedFullViewingKey<N>[src]

impl<N: ZcashNetwork> Debug for ExtendedSpendingKey<N>[src]

Auto Trait Implementations

impl<N> Send for ExtendedSpendingKey<N>

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

impl<N> Sync for ExtendedSpendingKey<N>

impl<N> UnwindSafe for ExtendedSpendingKey<N> where
    N: UnwindSafe

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

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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