pub struct EngineConfig {
pub min_poll_delay_ms: u64,
pub backoff_multiplier: f64,
pub max_backoff_ms: u64,
}Expand description
Engine configuration
Fields§
§min_poll_delay_ms: u64Minimum delay between userFills polls (ms)
backoff_multiplier: f64Backoff multiplier for errors
max_backoff_ms: u64Max backoff delay (ms)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EngineConfig
impl RefUnwindSafe for EngineConfig
impl Send for EngineConfig
impl Sync for EngineConfig
impl Unpin for EngineConfig
impl UnsafeUnpin for EngineConfig
impl UnwindSafe for EngineConfig
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