Struct EthTransactionReceipt
pub struct EthTransactionReceipt {Show 15 fields
pub from: Address,
pub to: Option<Address>,
pub gas_used: U256,
pub cumulative_gas_used: U256,
pub effective_gas_price: U256,
pub contract_address: Option<Address>,
pub block_hash: Hash,
pub block_number: BlockNumber,
pub transaction_index: U256,
pub transaction_hash: Hash,
pub logs: Vec<Log>,
pub logs_bloom: FixedBytes<256>,
pub type_: U256,
pub nonce: Option<U256>,
pub status: U256,
}Fields§
§from: Address§to: Option<Address>§gas_used: U256§cumulative_gas_used: U256§effective_gas_price: U256§contract_address: Option<Address>§block_hash: Hash§block_number: BlockNumber§transaction_index: U256§transaction_hash: Hash§logs: Vec<Log>§logs_bloom: FixedBytes<256>§type_: U256§nonce: Option<U256>§status: U256Trait Implementations§
§impl Debug for EthTransactionReceipt
impl Debug for EthTransactionReceipt
§impl<'de> Deserialize<'de> for EthTransactionReceipt
impl<'de> Deserialize<'de> for EthTransactionReceipt
§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EthTransactionReceipt
impl RefUnwindSafe for EthTransactionReceipt
impl Send for EthTransactionReceipt
impl Sync for EthTransactionReceipt
impl Unpin for EthTransactionReceipt
impl UnsafeUnpin for EthTransactionReceipt
impl UnwindSafe for EthTransactionReceipt
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