Struct ethers_flashbots::BundleStats
source · [−]pub struct BundleStats {
pub is_simulated: bool,
pub is_sent_to_miners: bool,
pub is_high_priority: bool,
pub simulated_at: Option<DateTime<Utc>>,
pub submitted_at: Option<DateTime<Utc>>,
pub sent_to_miners_at: Option<DateTime<Utc>>,
}Expand description
Represents stats for a submitted bundle.
See Flashbots docs for more information.
Fields
is_simulated: boolWhether the bundle was simulated.
is_sent_to_miners: boolWhether the bundle was sent to miners.
is_high_priority: boolWhether the bundle is high priority.
simulated_at: Option<DateTime<Utc>>When the bundle was simulated
submitted_at: Option<DateTime<Utc>>When the bundle was submitted
sent_to_miners_at: Option<DateTime<Utc>>When the bundle was sent to miners
Trait Implementations
sourceimpl Debug for BundleStats
impl Debug for BundleStats
sourceimpl<'de> Deserialize<'de> for BundleStats
impl<'de> Deserialize<'de> for BundleStats
sourcefn 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 RefUnwindSafe for BundleStats
impl Send for BundleStats
impl Sync for BundleStats
impl Unpin for BundleStats
impl UnwindSafe for BundleStats
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more