#[repr(C)]pub struct HDNode {
pub depth: u32,
pub child_num: u32,
pub chain_code: [u8; 32],
pub private_key: [u8; 32],
pub private_key_extension: [u8; 32],
pub public_key: [u8; 33],
pub curve: *const curve_info,
}Fields§
§depth: u32§child_num: u32§chain_code: [u8; 32]§private_key: [u8; 32]§private_key_extension: [u8; 32]§public_key: [u8; 33]§curve: *const curve_infoTrait Implementations§
Auto Trait Implementations§
impl Freeze for HDNode
impl RefUnwindSafe for HDNode
impl !Send for HDNode
impl !Sync for HDNode
impl Unpin for HDNode
impl UnwindSafe for HDNode
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