Struct wallet::bip32::PubkeyChain[][src]

pub struct PubkeyChain {
    pub seed_based: bool,
    pub master: XpubRef,
    pub source_path: Vec<BranchStep>,
    pub branch_xpub: ExtendedPubKey,
    pub revocation_seal: Option<OutPoint>,
    pub terminal_path: Vec<TerminalStep>,
}

Fields

seed_based: boolmaster: XpubRefsource_path: Vec<BranchStep>branch_xpub: ExtendedPubKeyrevocation_seal: Option<OutPoint>terminal_path: Vec<TerminalStep>

Implementations

impl PubkeyChain[src]

Trait Implementations

impl Clone for PubkeyChain[src]

impl Debug for PubkeyChain[src]

impl Display for PubkeyChain[src]

impl Eq for PubkeyChain[src]

impl FromStr for PubkeyChain[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for PubkeyChain[src]

impl MiniscriptKey for PubkeyChain[src]

type Hash = Self

The associated Hash type with the publicKey

impl Ord for PubkeyChain[src]

impl PartialEq<PubkeyChain> for PubkeyChain[src]

impl PartialOrd<PubkeyChain> for PubkeyChain[src]

impl StrictDecode for PubkeyChain[src]

impl StrictEncode for PubkeyChain[src]

impl StructuralEq for PubkeyChain[src]

impl StructuralPartialEq for PubkeyChain[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.