Struct avalanche_rs::avm::parser::transfer_op_parser::TransferableOperation[][src]

pub struct TransferableOperation {
    pub asset_id: String,
    pub utxo_ids: Vec<UtxoIds>,
    pub secp256k1_mint_op: Option<SECP256K1MintOp>,
    pub nft_mint_op: Option<NFTMintOp>,
    pub nft_transfer_op: Option<NFTTransferOp>,
}

Fields

asset_id: Stringutxo_ids: Vec<UtxoIds>secp256k1_mint_op: Option<SECP256K1MintOp>nft_mint_op: Option<NFTMintOp>nft_transfer_op: Option<NFTTransferOp>

Trait Implementations

impl Debug for TransferableOperation[src]

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

impl Serialize for TransferableOperation[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> Instrument for T[src]

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

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.