pub struct DerivationPath { /* private fields */ }Expand description
BIP44 key derivation path.
Implementations§
Source§impl DerivationPath
impl DerivationPath
Sourcepub fn iter(&self) -> impl Iterator<Item = &ChildNumber>
pub fn iter(&self) -> impl Iterator<Item = &ChildNumber>
Returns an iterator of child numbers.
Trait Implementations§
Source§impl AsRef<[ChildNumber]> for DerivationPath
impl AsRef<[ChildNumber]> for DerivationPath
Source§fn as_ref(&self) -> &[ChildNumber]
fn as_ref(&self) -> &[ChildNumber]
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for DerivationPath
impl Clone for DerivationPath
Source§fn clone(&self) -> DerivationPath
fn clone(&self) -> DerivationPath
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DerivationPath
impl Debug for DerivationPath
Source§impl Default for DerivationPath
impl Default for DerivationPath
Source§fn default() -> DerivationPath
fn default() -> DerivationPath
Returns the “default value” for a type. Read more
Source§impl FromStr for DerivationPath
impl FromStr for DerivationPath
Source§impl PartialEq for DerivationPath
impl PartialEq for DerivationPath
impl Eq for DerivationPath
impl StructuralPartialEq for DerivationPath
Auto Trait Implementations§
impl Freeze for DerivationPath
impl RefUnwindSafe for DerivationPath
impl Send for DerivationPath
impl Sync for DerivationPath
impl Unpin for DerivationPath
impl UnwindSafe for DerivationPath
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more