pub struct OriginPath {
pub components: Vec<PathComponent>,
}Expand description
An explicit BIP-32 origin path (a sequence of PathComponents).
Fields§
§components: Vec<PathComponent>Ordered components from root toward leaf.
Implementations§
Trait Implementations§
Source§impl Clone for OriginPath
impl Clone for OriginPath
Source§fn clone(&self) -> OriginPath
fn clone(&self) -> OriginPath
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OriginPath
impl Debug for OriginPath
Source§impl PartialEq for OriginPath
impl PartialEq for OriginPath
Source§fn eq(&self, other: &OriginPath) -> bool
fn eq(&self, other: &OriginPath) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for OriginPath
impl StructuralPartialEq for OriginPath
Auto Trait Implementations§
impl Freeze for OriginPath
impl RefUnwindSafe for OriginPath
impl Send for OriginPath
impl Sync for OriginPath
impl Unpin for OriginPath
impl UnsafeUnpin for OriginPath
impl UnwindSafe for OriginPath
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