pub struct MarketMakingConfig {
pub max_exposure: f64,
pub check_interval_ms: u64,
pub min_spread_bps: u32,
pub max_order_size: f64,
pub verbose: bool,
}Fields§
§max_exposure: f64§check_interval_ms: u64§min_spread_bps: u32§max_order_size: f64§verbose: boolTrait Implementations§
Source§impl Clone for MarketMakingConfig
impl Clone for MarketMakingConfig
Source§fn clone(&self) -> MarketMakingConfig
fn clone(&self) -> MarketMakingConfig
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 MarketMakingConfig
impl Debug for MarketMakingConfig
Auto Trait Implementations§
impl Freeze for MarketMakingConfig
impl RefUnwindSafe for MarketMakingConfig
impl Send for MarketMakingConfig
impl Sync for MarketMakingConfig
impl Unpin for MarketMakingConfig
impl UnwindSafe for MarketMakingConfig
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