pub struct AddressWatchBlockchainEvent {
pub id: String,
pub address_watch_id: String,
pub network: AddressWatchNetwork,
pub name: String,
pub block_number: f64,
pub tx_hash: String,
pub index: String,
pub timestamp: String,
pub status: String,
pub data: HashMap<String, HashMap<String, Value>>,
}Fields§
§id: String§address_watch_id: String§network: AddressWatchNetwork§name: String§block_number: f64§tx_hash: String§index: String§timestamp: String§status: String§data: HashMap<String, HashMap<String, Value>>Trait Implementations§
Source§impl Clone for AddressWatchBlockchainEvent
impl Clone for AddressWatchBlockchainEvent
Source§fn clone(&self) -> AddressWatchBlockchainEvent
fn clone(&self) -> AddressWatchBlockchainEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AddressWatchBlockchainEvent
impl Debug for AddressWatchBlockchainEvent
Source§impl<'de> Deserialize<'de> for AddressWatchBlockchainEvent
impl<'de> Deserialize<'de> for AddressWatchBlockchainEvent
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 AddressWatchBlockchainEvent
impl RefUnwindSafe for AddressWatchBlockchainEvent
impl Send for AddressWatchBlockchainEvent
impl Sync for AddressWatchBlockchainEvent
impl Unpin for AddressWatchBlockchainEvent
impl UnsafeUnpin for AddressWatchBlockchainEvent
impl UnwindSafe for AddressWatchBlockchainEvent
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