Struct avalanche_rs::avm::parser::signed_tx_parser::SignedTx[][src]

pub struct SignedTx {
    pub codec_id: i16,
    pub unsigned_tx_offset: usize,
    pub type_id: i32,
    pub tx_id: String,
    pub base_tx: Option<BaseTx>,
    pub create_asset_tx: Option<CreateAssetTx>,
    pub operation_tx: Option<OperationTx>,
    pub import_tx: Option<ImportTx>,
    pub export_tx: Option<ExportTx>,
    pub credentials: Vec<Credential>,
}

Fields

codec_id: i16unsigned_tx_offset: usizetype_id: i32tx_id: Stringbase_tx: Option<BaseTx>create_asset_tx: Option<CreateAssetTx>operation_tx: Option<OperationTx>import_tx: Option<ImportTx>export_tx: Option<ExportTx>credentials: Vec<Credential>

Trait Implementations

impl Debug for SignedTx[src]

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

impl Serialize for SignedTx[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.