[][src]Struct liquid_rpc_json::GetAddressInfoResult

pub struct GetAddressInfoResult {
    pub address: String,
    pub script_pub_key: Script,
    pub ismine: bool,
    pub iswatchonly: bool,
    pub isscript: bool,
    pub iswitness: bool,
    pub witness_version: Option<u32>,
    pub witness_program: Option<Vec<u8>>,
    pub script: String,
    pub pubkey: Option<PublicKey>,
    pub iscompressed: Option<bool>,
    pub label: Option<String>,
    pub labels: Vec<String>,
    pub timestamp: Option<u64>,
    pub hdkeypath: Option<String>,
    pub hdseedid: Option<Vec<u8>>,
    pub hdmasterkeyid: Option<Vec<u8>>,
    pub confidential: String,
    pub unconfidential: String,
    pub confidential_key: Option<PublicKey>,
}

Fields

address: Stringscript_pub_key: Scriptismine: booliswatchonly: boolisscript: booliswitness: boolwitness_version: Option<u32>witness_program: Option<Vec<u8>>script: String

The script type.

pubkey: Option<PublicKey>iscompressed: Option<bool>label: Option<String>labels: Vec<String>timestamp: Option<u64>hdkeypath: Option<String>hdseedid: Option<Vec<u8>>hdmasterkeyid: Option<Vec<u8>>confidential: Stringunconfidential: Stringconfidential_key: Option<PublicKey>

Trait Implementations

impl Clone for GetAddressInfoResult[src]

impl Debug for GetAddressInfoResult[src]

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

impl Eq for GetAddressInfoResult[src]

impl PartialEq<GetAddressInfoResult> for GetAddressInfoResult[src]

impl Serialize for GetAddressInfoResult[src]

impl StructuralEq for GetAddressInfoResult[src]

impl StructuralPartialEq for GetAddressInfoResult[src]

Auto Trait Implementations

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> 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.

impl<T> Typeable for T where
    T: Any