pub struct Bip44Entropy {
pub chain_code: Vec<u8>,
pub coin_type: u64,
pub depth: u32,
pub index: u64,
pub master_fingerprint: u64,
pub parent_fingerprint: u64,
pub path: String,
pub private_key: Vec<u8>,
pub public_key: Vec<u8>,
}
Expand description
Entropy for Bip32
Fields§
§chain_code: Vec<u8>
§coin_type: u64
§depth: u32
§index: u64
§master_fingerprint: u64
§parent_fingerprint: u64
§path: String
§private_key: Vec<u8>
§public_key: Vec<u8>
Trait Implementations§
Source§impl Debug for Bip44Entropy
impl Debug for Bip44Entropy
Source§impl<'de> Deserialize<'de> for Bip44Entropy
impl<'de> Deserialize<'de> for Bip44Entropy
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
Auto Trait Implementations§
impl Freeze for Bip44Entropy
impl RefUnwindSafe for Bip44Entropy
impl Send for Bip44Entropy
impl Sync for Bip44Entropy
impl Unpin for Bip44Entropy
impl UnwindSafe for Bip44Entropy
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