pub struct MockExecutionConfig {
pub mocked_exchange: ExchangeId,
pub initial_state: UnindexedAccountSnapshot,
pub latency_ms: u64,
pub fee_model: FeeModelConfig,
pub fill_model: SimFillConfig,
}Fields§
§mocked_exchange: ExchangeId§initial_state: UnindexedAccountSnapshot§latency_ms: u64§fee_model: FeeModelConfigFee model used by the mock exchange to compute trading fees.
Defaults to FeeModelConfig::Zero. Use FeeModelConfig::Percentage
for spot/futures simulation (e.g. 0.1% taker fee).
fill_model: SimFillConfigFill model used by the mock exchange to compute execution prices.
Defaults to SimFillConfig::LastPrice, which fills at the
order price (identical to pre-FillModel behaviour). Switch to
SimFillConfig::BidAsk or SimFillConfig::Midpoint for
more realistic spread-cost simulation when market prices are injected
alongside orders.
Implementations§
Source§impl MockExecutionConfig
impl MockExecutionConfig
pub const fn new( mocked_exchange: ExchangeId, initial_state: UnindexedAccountSnapshot, latency_ms: u64, fee_model: FeeModelConfig, fill_model: SimFillConfig, ) -> MockExecutionConfig
Trait Implementations§
Source§impl Clone for MockExecutionConfig
impl Clone for MockExecutionConfig
Source§fn clone(&self) -> MockExecutionConfig
fn clone(&self) -> MockExecutionConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MockExecutionConfig
impl Debug for MockExecutionConfig
Source§impl<'de> Deserialize<'de> for MockExecutionConfig
impl<'de> Deserialize<'de> for MockExecutionConfig
Source§fn 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
Source§impl Hash for MockExecutionConfig
impl Hash for MockExecutionConfig
Source§impl Ord for MockExecutionConfig
impl Ord for MockExecutionConfig
Source§fn cmp(&self, other: &MockExecutionConfig) -> Ordering
fn cmp(&self, other: &MockExecutionConfig) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MockExecutionConfig
impl PartialEq for MockExecutionConfig
Source§fn eq(&self, other: &MockExecutionConfig) -> bool
fn eq(&self, other: &MockExecutionConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MockExecutionConfig
impl PartialOrd for MockExecutionConfig
Source§impl Serialize for MockExecutionConfig
impl Serialize for MockExecutionConfig
impl Eq for MockExecutionConfig
impl StructuralPartialEq for MockExecutionConfig
Auto Trait Implementations§
impl Freeze for MockExecutionConfig
impl RefUnwindSafe for MockExecutionConfig
impl Send for MockExecutionConfig
impl Sync for MockExecutionConfig
impl Unpin for MockExecutionConfig
impl UnsafeUnpin for MockExecutionConfig
impl UnwindSafe for MockExecutionConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more