[][src]Struct liquid_rpc_json::ValidateAddressResult

pub struct ValidateAddressResult {
    pub is_valid: bool,
    pub is_valid_parent: bool,
    pub address: Option<String>,
    pub script_pub_key: Option<Script>,
    pub is_script: Option<bool>,
    pub is_witness: Option<bool>,
    pub witness_version: Option<u8>,
    pub witness_program: Option<Vec<u8>>,
    pub confidential_key: Option<String>,
    pub unconfidential: Option<String>,
}

Fields

is_valid: boolis_valid_parent: booladdress: Option<String>script_pub_key: Option<Script>is_script: Option<bool>is_witness: Option<bool>witness_version: Option<u8>witness_program: Option<Vec<u8>>confidential_key: Option<String>unconfidential: Option<String>

Trait Implementations

impl Clone for ValidateAddressResult[src]

impl Debug for ValidateAddressResult[src]

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

impl Eq for ValidateAddressResult[src]

impl PartialEq<ValidateAddressResult> for ValidateAddressResult[src]

impl Serialize for ValidateAddressResult[src]

impl StructuralEq for ValidateAddressResult[src]

impl StructuralPartialEq for ValidateAddressResult[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