pub struct LogQuery {
pub timestamp: Timestamp,
pub tx_number_in_block: u16,
pub aux_byte: u8,
pub shard_id: u8,
pub address: Address,
pub key: U256,
pub read_value: U256,
pub written_value: U256,
pub rw_flag: bool,
pub rollback: bool,
pub is_service: bool,
}
Fields§
§timestamp: Timestamp
§tx_number_in_block: u16
§aux_byte: u8
§shard_id: u8
§address: Address
§key: U256
§read_value: U256
§written_value: U256
§rw_flag: bool
§rollback: bool
§is_service: bool
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogQuery
impl<'de> Deserialize<'de> for LogQuery
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
impl Copy for LogQuery
impl Eq for LogQuery
impl StructuralPartialEq for LogQuery
Auto Trait Implementations§
impl Freeze for LogQuery
impl RefUnwindSafe for LogQuery
impl Send for LogQuery
impl Sync for LogQuery
impl Unpin for LogQuery
impl UnwindSafe for LogQuery
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