pub struct Event {
Show 39 fields pub status: String, pub monitor_id: String, pub monitor_version: String, pub time_pending: Option<String>, pub blocks_pending: Option<i64>, pub pending_time_stamp: String, pub pending_block_number: i64, pub hash: String, pub from: String, pub to: String, pub value: String, pub gas: i64, pub nonce: i64, pub block_hash: Option<String>, pub block_number: Option<i64>, pub v: String, pub r: String, pub s: String, pub input: String, pub gas_used: Option<i64>, pub type_field: i64, pub max_fee_per_gas: String, pub max_fee_per_gas_gwei: f64, pub max_priority_fee_per_gas: String, pub max_priority_fee_per_gas_gwei: f64, pub base_fee_per_gas: Option<String>, pub base_fee_per_gas_gwei: Option<f64>, pub transaction_index: Option<i64>, pub asset: String, pub block_time_stamp: Option<String>, pub watched_address: String, pub direction: String, pub counterparty: String, pub server_version: String, pub event_code: String, pub time_stamp: String, pub dispatch_timestamp: String, pub system: String, pub network: String,
}

Fields§

§status: String§monitor_id: String§monitor_version: String§time_pending: Option<String>§blocks_pending: Option<i64>§pending_time_stamp: String§pending_block_number: i64§hash: String§from: String§to: String§value: String§gas: i64§nonce: i64§block_hash: Option<String>§block_number: Option<i64>§v: String§r: String§s: String§input: String§gas_used: Option<i64>§type_field: i64§max_fee_per_gas: String§max_fee_per_gas_gwei: f64§max_priority_fee_per_gas: String§max_priority_fee_per_gas_gwei: f64§base_fee_per_gas: Option<String>§base_fee_per_gas_gwei: Option<f64>§transaction_index: Option<i64>§asset: String§block_time_stamp: Option<String>§watched_address: String§direction: String§counterparty: String§server_version: String§event_code: String§time_stamp: String§dispatch_timestamp: String§system: String§network: String

Trait Implementations§

source§

impl Debug for Event

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Event

source§

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 Serialize for Event

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
    __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Event

§

impl Send for Event

§

impl Sync for Event

§

impl Unpin for Event

§

impl UnwindSafe for Event

Blanket Implementations§

source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere
    V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for Twhere
    T: for<'de> Deserialize<'de>,