pub struct DerivationStep {
pub index: u32,
pub hardened: bool,
}Expand description
A single step in a BIP-32 derivation path.
Fields§
§index: u32Child index (0-based).
hardened: boolWhether this is a hardened derivation step.
Trait Implementations§
Source§impl Clone for DerivationStep
impl Clone for DerivationStep
Source§fn clone(&self) -> DerivationStep
fn clone(&self) -> DerivationStep
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 moreAuto Trait Implementations§
impl Freeze for DerivationStep
impl RefUnwindSafe for DerivationStep
impl Send for DerivationStep
impl Sync for DerivationStep
impl Unpin for DerivationStep
impl UnsafeUnpin for DerivationStep
impl UnwindSafe for DerivationStep
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