[−][src]Enum ed25519_dalek_bip32::ChildIndex
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]
pub 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.
pub fn from_str(s: &str) -> Result<ChildIndex, <ChildIndex as FromStr>::Err>
[src]
impl Ord for ChildIndex
[src]
pub 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]
pub fn eq(&self, other: &ChildIndex) -> bool
[src]
pub fn ne(&self, other: &ChildIndex) -> bool
[src]
impl PartialOrd<ChildIndex> for ChildIndex
[src]
pub fn partial_cmp(&self, other: &ChildIndex) -> Option<Ordering>
[src]
pub fn lt(&self, other: &ChildIndex) -> bool
[src]
pub fn le(&self, other: &ChildIndex) -> bool
[src]
pub fn gt(&self, other: &ChildIndex) -> bool
[src]
pub 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,
pub 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> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub 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.
pub 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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,