[][src]Enum wagyu_model::derivation_path::ChildIndex

pub enum ChildIndex {
    Normal(u32),
    Hardened(u32),
}

Represents a child index for a derivation path

Variants

Normal(u32)Hardened(u32)

Methods

impl ChildIndex[src]

pub fn from_normal(index: u32) -> Result<Self, DerivationPathError>[src]

Returns [Normal] from an index, or errors if the index is not within [0, 2^31 - 1].

pub fn from_hardened(index: u32) -> Result<Self, DerivationPathError>[src]

Returns [Hardened] from an index, or errors if the index is not within [0, 2^31 - 1].

pub fn is_normal(&self) -> bool[src]

Returns true if the child index is a [Normal] value.

pub fn is_hardened(&self) -> bool[src]

Returns true if the child index is a [Hardened] value.

pub fn to_index(&self) -> u32[src]

Returns the child index.

Trait Implementations

impl Clone for ChildIndex[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Ord for ChildIndex[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl From<u32> for ChildIndex[src]

impl From<ChildIndex> for u32[src]

impl PartialOrd<ChildIndex> for ChildIndex[src]

impl PartialEq<ChildIndex> for ChildIndex[src]

impl Copy for ChildIndex[src]

impl Eq for ChildIndex[src]

impl Display for ChildIndex[src]

impl Debug for ChildIndex[src]

impl FromStr for ChildIndex[src]

type Err = DerivationPathError

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,