[−][src]Enum derivation_path::ChildIndex
An index in a DerivationPath
Variants
Normal(u32)
Hardened(u32)
Implementations
impl ChildIndex
[src]
pub fn hardened(num: u32) -> Result<Self, 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<Self, 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) -> Self
[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]
fn clone(&self) -> ChildIndex
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[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.
fn from_str(s: &str) -> Result<Self, Self::Err>
[src]
impl Ord for ChildIndex
[src]
fn cmp(&self, other: &ChildIndex) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<ChildIndex> for ChildIndex
[src]
fn eq(&self, other: &ChildIndex) -> bool
[src]
fn ne(&self, other: &ChildIndex) -> bool
[src]
impl PartialOrd<ChildIndex> for ChildIndex
[src]
fn partial_cmp(&self, other: &ChildIndex) -> Option<Ordering>
[src]
fn lt(&self, other: &ChildIndex) -> bool
[src]
fn le(&self, other: &ChildIndex) -> bool
[src]
fn gt(&self, other: &ChildIndex) -> bool
[src]
fn ge(&self, other: &ChildIndex) -> bool
[src]
impl StructuralEq for ChildIndex
[src]
impl StructuralPartialEq for ChildIndex
[src]
Auto Trait Implementations
impl RefUnwindSafe for ChildIndex
impl Send for ChildIndex
impl Sync for ChildIndex
impl Unpin for ChildIndex
impl UnwindSafe for ChildIndex
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,