pub struct Derivation(u32);
Expand description

a derivation value that can be used to derive keys

There is 2 kind of derivations, the soft and the hard derivations. SoftDerivation are expected to allow derivation of the private keys and of the public keys. HardDerivation are expected to allow only the derivation of the private keys.

Tuple Fields§

§0: u32

Implementations§

source§

impl Derivation

source

pub const fn new(v: u32) -> Self

create a new derivation with the given index

source

pub fn is_soft_derivation(self) -> bool

test if the given derivation is a soft derivation

Example
let derivation = Derivation::new(42);
assert!(derivation.is_soft_derivation());
source

pub fn is_hard_derivation(self) -> bool

test if the given derivation is a hard derivation

Example
let derivation = Derivation::new(0x8000_0010);
assert!(derivation.is_hard_derivation());
source

pub const fn max_value() -> Self

returns the max derivation index value

let max = Derivation::max_value();
assert_eq!(max, Derivation::new(4294967295));
source

pub const fn min_value() -> Self

returns the min derivation index value

let min = Derivation::min_value();
assert_eq!(min, Derivation::new(0));
source

pub const fn overflowing_add(self, rhs: u32) -> (Self, bool)

calculate derivation + rhs

Returns the tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.

Examples

Basic usage:

assert_eq!(
    Derivation::new(5).overflowing_add(2),
    (Derivation::new(7), false)
);
assert_eq!(
    Derivation::max_value().overflowing_add(1),
    (Derivation::new(0), true)
);
source

pub fn saturating_add(self, rhs: u32) -> Self

saturating integer addition. Computes self + rhs, saturating at the numeric bounds instead of overflowing.

Examples

Basic usage:

assert_eq!(Derivation::new(100).saturating_add(1), Derivation::new(101));
assert_eq!(Derivation::max_value().saturating_add(2048), Derivation::max_value());
source

pub fn checked_add(self, rhs: u32) -> Option<Self>

checked integer addition. Computes self + rhs, returning None if overflow would occurred.

Examples

Basic usage:

assert_eq!(Derivation::new(100).checked_add(1), Some(Derivation::new(101)));
assert_eq!(Derivation::max_value().checked_add(2048), None);
source

pub const fn wrapping_add(self, rhs: u32) -> Self

Wrapping (modular) addition. Computes self + rhs, wrapping around the boundary of the type.

Examples

Basic usage:

assert_eq!(Derivation::new(100).wrapping_add(1), Derivation::new(101));
assert_eq!(Derivation::max_value().wrapping_add(1), Derivation::new(0));
source

fn saturating_sub(self, rhs: u32) -> Self

Methods from Deref<Target = u32>§

1.43.0 · source

pub const MIN: u32 = 0u32

1.43.0 · source

pub const MAX: u32 = 4_294_967_295u32

1.53.0 · source

pub const BITS: u32 = 32u32

Trait Implementations§

source§

impl Clone for Derivation

source§

fn clone(&self) -> Derivation

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 Derivation

source§

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

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

impl Default for Derivation

source§

fn default() -> Derivation

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

impl Deref for Derivation

§

type Target = u32

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Display for Derivation

source§

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

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

impl From<Derivation> for u32

source§

fn from(d: Derivation) -> Self

Converts to this type from the input type.
source§

impl From<HardDerivation> for Derivation

source§

fn from(d: HardDerivation) -> Self

Converts to this type from the input type.
source§

impl From<SoftDerivation> for Derivation

source§

fn from(d: SoftDerivation) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Derivation

source§

fn from(v: u32) -> Derivation

Converts to this type from the input type.
source§

impl FromIterator<Derivation> for DerivationPath<AnyScheme>

source§

fn from_iter<T: IntoIterator<Item = Derivation>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl FromStr for Derivation

§

type Err = ParseDerivationError

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

fn from_str(s: &str) -> Result<Self, Self::Err>

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

impl Hash for Derivation

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 Ord for Derivation

source§

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

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

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

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

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

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

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

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

impl PartialEq<Derivation> for Derivation

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Derivation> for Derivation

source§

fn partial_cmp(&self, other: &Derivation) -> 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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl TryFrom<Derivation> for HardDerivation

§

type Error = DerivationError

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

fn try_from(value: Derivation) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Derivation> for SoftDerivation

§

type Error = DerivationError

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

fn try_from(value: Derivation) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for Derivation

source§

impl Eq for Derivation

source§

impl StructuralEq for Derivation

source§

impl StructuralPartialEq for Derivation

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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> ToOwned for Twhere T: Clone,

§

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 Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

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

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

§

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 Twhere U: TryFrom<T>,

§

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.