Struct DerivationPath

Source
pub struct DerivationPath(/* private fields */);
Expand description

A BIP-32 derivation path.

Implementations§

Source§

impl DerivationPath

Source

pub fn len(&self) -> usize

Returns length of the derivation path

Source

pub fn master() -> DerivationPath

Returns derivation path for a master key (i.e. empty derivation path)

Source

pub fn is_master(&self) -> bool

Returns whether derivation path represents master key (i.e. it’s length is empty). True for m path.

Source

pub fn child(&self, cn: ChildNumber) -> DerivationPath

Create a new DerivationPath that is a child of this one.

Source

pub fn into_child(self, cn: ChildNumber) -> DerivationPath

Convert into a DerivationPath that is a child of this one.

Source

pub fn children_from(&self, cn: ChildNumber) -> DerivationPathIterator<'_>

Get an Iterator over the children of this DerivationPath starting with the given ChildNumber.

Source

pub fn normal_children(&self) -> DerivationPathIterator<'_>

Get an Iterator over the unhardened children of this DerivationPath.

Source

pub fn hardened_children(&self) -> DerivationPathIterator<'_>

Get an Iterator over the hardened children of this DerivationPath.

Source

pub fn extend<T: AsRef<[ChildNumber]>>(&self, path: T) -> DerivationPath

Concatenate self with path and return the resulting new path.

use bitcoin::util::bip32::{DerivationPath, ChildNumber};
use std::str::FromStr;

let base = DerivationPath::from_str("m/42").unwrap();

let deriv_1 = base.extend(DerivationPath::from_str("m/0/1").unwrap());
let deriv_2 = base.extend(&[
    ChildNumber::from_normal_idx(0).unwrap(),
    ChildNumber::from_normal_idx(1).unwrap()
]);

assert_eq!(deriv_1, deriv_2);

Trait Implementations§

Source§

impl AsRef<[ChildNumber]> for DerivationPath

Source§

fn as_ref(&self) -> &[ChildNumber]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for DerivationPath

Source§

fn clone(&self) -> DerivationPath

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DerivationPath

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for DerivationPath

Source§

fn default() -> DerivationPath

Returns the “default value” for a type. Read more
Source§

impl Display for DerivationPath

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> From<&'a [ChildNumber]> for DerivationPath

Source§

fn from(numbers: &'a [ChildNumber]) -> Self

Converts to this type from the input type.
Source§

impl From<Vec<ChildNumber>> for DerivationPath

Source§

fn from(numbers: Vec<ChildNumber>) -> Self

Converts to this type from the input type.
Source§

impl FromIterator<ChildNumber> for DerivationPath

Source§

fn from_iter<T>(iter: T) -> Self
where T: IntoIterator<Item = ChildNumber>,

Creates a value from an iterator. Read more
Source§

impl FromStr for DerivationPath

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(path: &str) -> Result<DerivationPath, Error>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for DerivationPath

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Index<Range<usize>> for DerivationPath

Source§

type Output = [ChildNumber]

The returned type after indexing.
Source§

fn index(&self, index: Range<usize>) -> &[ChildNumber]

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<RangeFrom<usize>> for DerivationPath

Source§

type Output = [ChildNumber]

The returned type after indexing.
Source§

fn index(&self, index: RangeFrom<usize>) -> &[ChildNumber]

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<RangeFull> for DerivationPath

Source§

type Output = [ChildNumber]

The returned type after indexing.
Source§

fn index(&self, _: RangeFull) -> &[ChildNumber]

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<RangeTo<usize>> for DerivationPath

Source§

type Output = [ChildNumber]

The returned type after indexing.
Source§

fn index(&self, index: RangeTo<usize>) -> &[ChildNumber]

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<usize> for DerivationPath

Source§

type Output = ChildNumber

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &ChildNumber

Performs the indexing (container[index]) operation. Read more
Source§

impl Into<Vec<ChildNumber>> for DerivationPath

Source§

fn into(self) -> Vec<ChildNumber>

Converts this type into the (usually inferred) input type.
Source§

impl<'a> IntoIterator for &'a DerivationPath

Source§

type Item = &'a ChildNumber

The type of the elements being iterated over.
Source§

type IntoIter = Iter<'a, ChildNumber>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl Ord for DerivationPath

Source§

fn cmp(&self, other: &DerivationPath) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for DerivationPath

Source§

fn eq(&self, other: &DerivationPath) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for DerivationPath

Source§

fn partial_cmp(&self, other: &DerivationPath) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Eq for DerivationPath

Source§

impl StructuralPartialEq for DerivationPath

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoDerivationPath for T
where T: Into<DerivationPath>,

Source§

fn into_derivation_path(self) -> Result<DerivationPath, Error>

Convers a given type into a DerivationPath with possible error
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.