[−][src]Struct bitcoin::util::bip32::DerivationPath
A BIP-32 derivation path.
Methods
impl DerivationPath
[src]
pub fn len(&self) -> usize
[src]
Returns length of the derivation path
pub fn master() -> DerivationPath
[src]
Returns derivation path for a master key (i.e. empty derivation path)
pub fn is_master(&self) -> bool
[src]
Returns whether derivation path represents master key (i.e. it's length
is empty). True for m
path.
pub fn child(&self, cn: ChildNumber) -> DerivationPath
[src]
Create a new [DerivationPath] that is a child of this one.
pub fn into_child(self, cn: ChildNumber) -> DerivationPath
[src]
Convert into a [DerivationPath] that is a child of this one.
ⓘImportant traits for DerivationPathIterator<'a>pub fn children_from(&self, cn: ChildNumber) -> DerivationPathIterator
[src]
Get an [Iterator] over the children of this [DerivationPath] starting with the given [ChildNumber].
ⓘImportant traits for DerivationPathIterator<'a>pub fn normal_children(&self) -> DerivationPathIterator
[src]
Get an [Iterator] over the unhardened children of this [DerivationPath].
ⓘImportant traits for DerivationPathIterator<'a>pub fn hardened_children(&self) -> DerivationPathIterator
[src]
Get an [Iterator] over the hardened children of this [DerivationPath].
pub fn extend<T: AsRef<[ChildNumber]>>(&self, path: T) -> DerivationPath
[src]
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
impl From<Vec<ChildNumber>> for DerivationPath
[src]
fn from(numbers: Vec<ChildNumber>) -> Self
[src]
impl<'a> From<&'a [ChildNumber]> for DerivationPath
[src]
fn from(numbers: &'a [ChildNumber]) -> Self
[src]
impl AsRef<[ChildNumber]> for DerivationPath
[src]
fn as_ref(&self) -> &[ChildNumber]
[src]
impl Ord for DerivationPath
[src]
fn cmp(&self, other: &DerivationPath) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self
[src]
clamp
)Restrict a value to a certain interval. Read more
impl PartialOrd<DerivationPath> for DerivationPath
[src]
fn partial_cmp(&self, other: &DerivationPath) -> Option<Ordering>
[src]
fn lt(&self, other: &DerivationPath) -> bool
[src]
fn le(&self, other: &DerivationPath) -> bool
[src]
fn gt(&self, other: &DerivationPath) -> bool
[src]
fn ge(&self, other: &DerivationPath) -> bool
[src]
impl Default for DerivationPath
[src]
fn default() -> DerivationPath
[src]
impl<'a> IntoIterator for &'a DerivationPath
[src]
type Item = &'a ChildNumber
The type of the elements being iterated over.
type IntoIter = Iter<'a, ChildNumber>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
impl Into<Vec<ChildNumber>> for DerivationPath
[src]
fn into(self) -> Vec<ChildNumber>
[src]
impl Clone for DerivationPath
[src]
fn clone(&self) -> DerivationPath
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq<DerivationPath> for DerivationPath
[src]
fn eq(&self, other: &DerivationPath) -> bool
[src]
fn ne(&self, other: &DerivationPath) -> bool
[src]
impl Eq for DerivationPath
[src]
impl Display for DerivationPath
[src]
impl Debug for DerivationPath
[src]
impl Index<usize> for DerivationPath
[src]
type Output = ChildNumber
The returned type after indexing.
fn index(&self, index: usize) -> &ChildNumber
[src]
impl Index<Range<usize>> for DerivationPath
[src]
type Output = [ChildNumber]
The returned type after indexing.
fn index(&self, index: Range<usize>) -> &[ChildNumber]
[src]
impl Index<RangeTo<usize>> for DerivationPath
[src]
type Output = [ChildNumber]
The returned type after indexing.
fn index(&self, index: RangeTo<usize>) -> &[ChildNumber]
[src]
impl Index<RangeFrom<usize>> for DerivationPath
[src]
type Output = [ChildNumber]
The returned type after indexing.
fn index(&self, index: RangeFrom<usize>) -> &[ChildNumber]
[src]
impl Index<RangeFull> for DerivationPath
[src]
type Output = [ChildNumber]
The returned type after indexing.
fn index(&self, _: RangeFull) -> &[ChildNumber]
[src]
impl Hash for DerivationPath
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl FromIterator<ChildNumber> for DerivationPath
[src]
fn from_iter<T>(iter: T) -> Self where
T: IntoIterator<Item = ChildNumber>,
[src]
T: IntoIterator<Item = ChildNumber>,
impl FromStr for DerivationPath
[src]
Auto Trait Implementations
impl Unpin for DerivationPath
impl Sync for DerivationPath
impl Send for DerivationPath
impl UnwindSafe for DerivationPath
impl RefUnwindSafe for DerivationPath
Blanket Implementations
impl<T> IntoDerivationPath for T where
T: Into<DerivationPath>,
[src]
T: Into<DerivationPath>,
fn into_derivation_path(Self) -> Result<DerivationPath, Error>
[src]
impl<T> From<T> for T
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,