pub struct TransactionReceiptLogs {
pub address: Option<String>,
pub topics: Option<Vec<String>>,
pub data: Option<String>,
pub block_number: Option<String>,
pub transaction_hash: Option<String>,
pub transaction_index: Option<String>,
pub block_hash: Option<String>,
pub log_index: Option<String>,
pub removed: Option<bool>,
}Fields§
§address: Option<String>address
topics: Option<Vec<String>>topics
data: Option<String>data
block_number: Option<String>blockNumber
transaction_hash: Option<String>transactionHash
transaction_index: Option<String>transactionIndex
block_hash: Option<String>blockHash
log_index: Option<String>logIndex
removed: Option<bool>removed
Trait Implementations§
Source§impl Clone for TransactionReceiptLogs
impl Clone for TransactionReceiptLogs
Source§fn clone(&self) -> TransactionReceiptLogs
fn clone(&self) -> TransactionReceiptLogs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TransactionReceiptLogs
impl Debug for TransactionReceiptLogs
Source§impl<'de> Deserialize<'de> for TransactionReceiptLogs
impl<'de> Deserialize<'de> for TransactionReceiptLogs
Source§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
Source§impl PartialEq for TransactionReceiptLogs
impl PartialEq for TransactionReceiptLogs
Source§impl Serialize for TransactionReceiptLogs
impl Serialize for TransactionReceiptLogs
impl StructuralPartialEq for TransactionReceiptLogs
Auto Trait Implementations§
impl Freeze for TransactionReceiptLogs
impl RefUnwindSafe for TransactionReceiptLogs
impl Send for TransactionReceiptLogs
impl Sync for TransactionReceiptLogs
impl Unpin for TransactionReceiptLogs
impl UnwindSafe for TransactionReceiptLogs
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