pub struct PendingPoolConfig {
pub poll_interval_ms: u64,
pub max_monitored: usize,
}Expand description
Configuration for pending pool monitoring.
Fields§
§poll_interval_ms: u64How often to poll for status changes (ms).
max_monitored: usizeMax number of transactions to monitor simultaneously.
Trait Implementations§
Source§impl Clone for PendingPoolConfig
impl Clone for PendingPoolConfig
Source§fn clone(&self) -> PendingPoolConfig
fn clone(&self) -> PendingPoolConfig
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 PendingPoolConfig
impl Debug for PendingPoolConfig
Auto Trait Implementations§
impl Freeze for PendingPoolConfig
impl RefUnwindSafe for PendingPoolConfig
impl Send for PendingPoolConfig
impl Sync for PendingPoolConfig
impl Unpin for PendingPoolConfig
impl UnsafeUnpin for PendingPoolConfig
impl UnwindSafe for PendingPoolConfig
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