pub struct IndexerTxWithCell {
pub tx_hash: H256,
pub block_number: BlockNumber,
pub tx_index: Uint32,
pub io_index: Uint32,
pub io_type: IndexerCellType,
}
Expand description
Ungrouped Tx inner type
Fields§
§tx_hash: H256
transaction hash
block_number: BlockNumber
the number of the transaction committed in the block
tx_index: Uint32
the position index of the transaction committed in the block
io_index: Uint32
the position index of the cell in the transaction inputs or outputs
io_type: IndexerCellType
io type
Trait Implementations§
Source§impl Debug for IndexerTxWithCell
impl Debug for IndexerTxWithCell
Source§impl JsonSchema for IndexerTxWithCell
impl JsonSchema for IndexerTxWithCell
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreAuto Trait Implementations§
impl Freeze for IndexerTxWithCell
impl RefUnwindSafe for IndexerTxWithCell
impl Send for IndexerTxWithCell
impl Sync for IndexerTxWithCell
impl Unpin for IndexerTxWithCell
impl UnwindSafe for IndexerTxWithCell
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more