[][src]Enum ed25519_dalek_bip32::ChildIndex

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

An index in a DerivationPath

Variants

Normal(u32)
Hardened(u32)

Implementations

impl ChildIndex[src]

pub fn hardened(num: u32) -> Result<ChildIndex, ChildIndexError>[src]

Create a ChildIndex::Hardened instance from a u32. This will fail if num is not in [0, 2^31 - 1]

pub fn normal(num: u32) -> Result<ChildIndex, ChildIndexError>[src]

Create a ChildIndex::Normal instance from a u32. This will fail if num is not in [0, 2^31 - 1]

pub fn to_u32(self) -> u32[src]

Convert ChildIndex to its inner u32

pub fn to_bits(self) -> u32[src]

Convert ChildIndex to a u32 representing the type and a 31 bit number. The highest bit is set for a hard derivation and clear for a normal derivation, and the remaining 31 bits are the index

pub fn from_bits(bits: u32) -> ChildIndex[src]

Build a ChildIndex from a u32 representing the type and a 31 bit number. See ChildIndex::to_bits for more information

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

Check if the ChildIndex is "hardened"

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

Check if the ChildIndex is "normal"

Trait Implementations

impl Clone for ChildIndex[src]

impl Copy for ChildIndex[src]

impl Debug for ChildIndex[src]

impl Display for ChildIndex[src]

impl Eq for ChildIndex[src]

impl FromStr for ChildIndex[src]

type Err = ChildIndexParseError

The associated error which can be returned from parsing.

impl Ord for ChildIndex[src]

impl PartialEq<ChildIndex> for ChildIndex[src]

impl PartialOrd<ChildIndex> for ChildIndex[src]

impl StructuralEq for ChildIndex[src]

impl StructuralPartialEq for ChildIndex[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,