[][src]Struct in3_sys::HDNode

#[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: u32child_num: u32chain_code: [u8; 32]private_key: [u8; 32]private_key_extension: [u8; 32]public_key: [u8; 33]curve: *const curve_info

Trait Implementations

impl Clone for HDNode[src]

impl Copy for HDNode[src]

impl Debug for HDNode[src]

Auto Trait Implementations

impl !Send for HDNode

impl !Sync for HDNode

impl Unpin for HDNode

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.