Struct avalanche_rs::pvm::parser::base_tx_parser::BaseTx[][src]

pub struct BaseTx {
    pub type_id: i32,
    pub network_id: u32,
    pub blockchain_id: String,
    pub transferable_outputs: Vec<TransferableOutput>,
    pub transferable_inputs: Vec<TransferableInput>,
    pub memo: Vec<u8>,
}

Fields

type_id: i32network_id: u32blockchain_id: Stringtransferable_outputs: Vec<TransferableOutput>transferable_inputs: Vec<TransferableInput>memo: Vec<u8>

Trait Implementations

impl Debug for BaseTx[src]

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

impl Serialize for BaseTx[src]

Auto Trait Implementations

impl RefUnwindSafe for BaseTx

impl Send for BaseTx

impl Sync for BaseTx

impl Unpin for BaseTx

impl UnwindSafe for BaseTx

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.