[][src]Struct liquid_rpc_json::GetTxOutResult

pub struct GetTxOutResult {
    pub best_block: Hash,
    pub confirmations: u32,
    pub coinbase: bool,
    pub script_pub_key: GetRawTransactionResultVoutScriptPubKey,
    pub value: Option<Amount>,
    pub value_commitment: Option<Vec<u8>>,
    pub asset: Option<AssetId>,
    pub asset_commitment: Option<Vec<u8>>,
    pub commitment_nonce: Vec<u8>,
}

Fields

best_block: Hashconfirmations: u32coinbase: boolscript_pub_key: GetRawTransactionResultVoutScriptPubKeyvalue: Option<Amount>value_commitment: Option<Vec<u8>>asset: Option<AssetId>asset_commitment: Option<Vec<u8>>commitment_nonce: Vec<u8>

Trait Implementations

impl Clone for GetTxOutResult[src]

impl Debug for GetTxOutResult[src]

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

impl Eq for GetTxOutResult[src]

impl PartialEq<GetTxOutResult> for GetTxOutResult[src]

impl StructuralEq for GetTxOutResult[src]

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