#[repr(C)]pub struct eth_tx {
pub hash: bytes32_t,
pub block_hash: bytes32_t,
pub block_number: u64,
pub from: address_t,
pub gas: u64,
pub gas_price: u64,
pub data: bytes_t,
pub nonce: u64,
pub to: address_t,
pub value: uint256_t,
pub transaction_index: c_int,
pub signature: [u8; 65],
}Fields§
§hash: bytes32_t§block_hash: bytes32_t§block_number: u64§from: address_t§gas: u64§gas_price: u64§data: bytes_t§nonce: u64§to: address_t§value: uint256_t§transaction_index: c_int§signature: [u8; 65]Trait Implementations§
Auto Trait Implementations§
impl Freeze for eth_tx
impl RefUnwindSafe for eth_tx
impl !Send for eth_tx
impl !Sync for eth_tx
impl Unpin for eth_tx
impl UnwindSafe for eth_tx
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