[][src]Struct hal::key::KeyInfo

pub struct KeyInfo {
    pub raw_private_key: HexBytes,
    pub wif_private_key: Option<PrivateKey>,
    pub public_key: PublicKey,
    pub uncompressed_public_key: PublicKey,
    pub addresses: Addresses,
}

Fields

raw_private_key: HexByteswif_private_key: Option<PrivateKey>public_key: PublicKeyuncompressed_public_key: PublicKeyaddresses: Addresses

Trait Implementations

impl Clone for KeyInfo[src]

impl Debug for KeyInfo[src]

impl<'de> Deserialize<'de> for KeyInfo[src]

impl Eq for KeyInfo[src]

impl PartialEq<KeyInfo> for KeyInfo[src]

impl Serialize for KeyInfo[src]

impl StructuralEq for KeyInfo[src]

impl StructuralPartialEq for KeyInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for KeyInfo

impl Send for KeyInfo

impl Sync for KeyInfo

impl Unpin for KeyInfo

impl UnwindSafe for KeyInfo

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.