Enum bitcoin::util::bip32::ChildNumber
source · pub enum ChildNumber {
Normal {
index: u32,
},
Hardened {
index: u32,
},
}
Expand description
A child number for a derived key
Variants§
Implementations§
source§impl ChildNumber
impl ChildNumber
sourcepub fn from_normal_idx(index: u32) -> Result<Self, Error>
pub fn from_normal_idx(index: u32) -> Result<Self, Error>
Create a Normal
from an index, returns an error if the index is not within
[0, 2^31 - 1].
sourcepub fn from_hardened_idx(index: u32) -> Result<Self, Error>
pub fn from_hardened_idx(index: u32) -> Result<Self, Error>
Create a Hardened
from an index, returns an error if the index is not within
[0, 2^31 - 1].
sourcepub fn is_hardened(&self) -> bool
pub fn is_hardened(&self) -> bool
Returns true
if the child number is a Hardened
value.
sourcepub fn increment(self) -> Result<ChildNumber, Error>
pub fn increment(self) -> Result<ChildNumber, Error>
Returns the child number that is a single increment from this one.
Trait Implementations§
source§impl Clone for ChildNumber
impl Clone for ChildNumber
source§fn clone(&self) -> ChildNumber
fn clone(&self) -> ChildNumber
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ChildNumber
impl Debug for ChildNumber
source§impl<'de> Deserialize<'de> for ChildNumber
impl<'de> Deserialize<'de> for ChildNumber
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for ChildNumber
impl Display for ChildNumber
source§impl From<ChildNumber> for u32
impl From<ChildNumber> for u32
source§fn from(cnum: ChildNumber) -> Self
fn from(cnum: ChildNumber) -> Self
Converts to this type from the input type.
source§impl From<u32> for ChildNumber
impl From<u32> for ChildNumber
source§impl FromIterator<ChildNumber> for DerivationPath
impl FromIterator<ChildNumber> for DerivationPath
source§fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = ChildNumber>,
fn from_iter<T>(iter: T) -> Selfwhere T: IntoIterator<Item = ChildNumber>,
Creates a value from an iterator. Read more
source§impl FromStr for ChildNumber
impl FromStr for ChildNumber
source§impl Hash for ChildNumber
impl Hash for ChildNumber
source§impl Ord for ChildNumber
impl Ord for ChildNumber
source§fn cmp(&self, other: &ChildNumber) -> Ordering
fn cmp(&self, other: &ChildNumber) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<ChildNumber> for ChildNumber
impl PartialEq<ChildNumber> for ChildNumber
source§fn eq(&self, other: &ChildNumber) -> bool
fn eq(&self, other: &ChildNumber) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ChildNumber> for ChildNumber
impl PartialOrd<ChildNumber> for ChildNumber
source§fn partial_cmp(&self, other: &ChildNumber) -> Option<Ordering>
fn partial_cmp(&self, other: &ChildNumber) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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 moresource§impl Serialize for ChildNumber
impl Serialize for ChildNumber
impl Copy for ChildNumber
impl Eq for ChildNumber
impl StructuralEq for ChildNumber
impl StructuralPartialEq for ChildNumber
Auto Trait Implementations§
impl RefUnwindSafe for ChildNumber
impl Send for ChildNumber
impl Sync for ChildNumber
impl Unpin for ChildNumber
impl UnwindSafe for ChildNumber
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more