pub struct ReceiptLog {
pub address: String,
pub block_hash: String,
pub block_number: String,
pub data: String,
pub log_index: String,
pub removed: bool,
pub topics: Vec<String>,
pub transaction_hash: String,
pub transaction_index: String,
}
Fields§
§address: String
§block_hash: String
§block_number: String
§data: String
§log_index: String
§removed: bool
§topics: Vec<String>
§transaction_hash: String
§transaction_index: String
Trait Implementations§
Source§impl Clone for ReceiptLog
impl Clone for ReceiptLog
Source§fn clone(&self) -> ReceiptLog
fn clone(&self) -> ReceiptLog
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 ReceiptLog
impl Debug for ReceiptLog
Source§impl<'de> Deserialize<'de> for ReceiptLog
impl<'de> Deserialize<'de> for ReceiptLog
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
Auto Trait Implementations§
impl Freeze for ReceiptLog
impl RefUnwindSafe for ReceiptLog
impl Send for ReceiptLog
impl Sync for ReceiptLog
impl Unpin for ReceiptLog
impl UnwindSafe for ReceiptLog
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