[][src]Struct liquid_rpc_json::GetRawTransationResultVinIssuance

pub struct GetRawTransationResultVinIssuance {
    pub asset_blinding_nonce: Vec<u8>,
    pub asset_entropy: Vec<u8>,
    pub isreissuance: bool,
    pub token: Option<AssetId>,
    pub asset: AssetId,
    pub asset_amount: Option<Amount>,
    pub asset_amount_commitment: Option<Vec<u8>>,
    pub token_amount: Option<Amount>,
    pub token_amount_commitment: Option<Vec<u8>>,
}

Fields

asset_blinding_nonce: Vec<u8>asset_entropy: Vec<u8>isreissuance: booltoken: Option<AssetId>asset: AssetIdasset_amount: Option<Amount>asset_amount_commitment: Option<Vec<u8>>token_amount: Option<Amount>token_amount_commitment: Option<Vec<u8>>

Implementations

impl GetRawTransationResultVinIssuance[src]

pub fn asset_issuance(&self) -> Result<AssetIssuance, Error>[src]

Get the asset issuance in elements type.

Trait Implementations

impl Clone for GetRawTransationResultVinIssuance[src]

impl Debug for GetRawTransationResultVinIssuance[src]

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

impl Eq for GetRawTransationResultVinIssuance[src]

impl PartialEq<GetRawTransationResultVinIssuance> for GetRawTransationResultVinIssuance[src]

impl StructuralEq for GetRawTransationResultVinIssuance[src]

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