pub struct Transaction {
Show 22 fields pub gas_limit: Option<U64>, pub gas_price: Option<U64>, pub id: TransactionId, pub tx_pointer: Option<TxPointer>, pub input_asset_ids: Option<Vec<AssetId>>, pub input_contracts: Option<Vec<ContractIdFragment>>, pub inputs: Option<Vec<Input>>, pub is_script: bool, pub is_create: bool, pub is_mint: bool, pub outputs: Vec<Output>, pub maturity: Option<U64>, pub receipts_root: Option<Bytes32>, pub status: Option<TransactionStatus>, pub witnesses: Option<Vec<HexString>>, pub receipts: Option<Vec<Receipt>>, pub script: Option<HexString>, pub script_data: Option<HexString>, pub salt: Option<Salt>, pub storage_slots: Option<Vec<HexString>>, pub bytecode_witness_index: Option<i32>, pub bytecode_length: Option<U64>,
}

Fields§

§gas_limit: Option<U64>§gas_price: Option<U64>§id: TransactionId§tx_pointer: Option<TxPointer>§input_asset_ids: Option<Vec<AssetId>>§input_contracts: Option<Vec<ContractIdFragment>>§inputs: Option<Vec<Input>>§is_script: bool§is_create: bool§is_mint: bool§outputs: Vec<Output>§maturity: Option<U64>§receipts_root: Option<Bytes32>§status: Option<TransactionStatus>§witnesses: Option<Vec<HexString>>§receipts: Option<Vec<Receipt>>§script: Option<HexString>§script_data: Option<HexString>§salt: Option<Salt>§storage_slots: Option<Vec<HexString>>§bytecode_witness_index: Option<i32>§bytecode_length: Option<U64>

Trait Implementations§

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
The type in a schema that this QueryFragment represents
The variables that are required to execute this QueryFragment
The name of the type in the GraphQL schema
Adds this fragment to the query being built by builder
The type returned in the event of a conversion error.
Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more