pub struct TardisReplayConfig {
pub tardis_ws_url: Option<String>,
pub normalize_symbols: Option<bool>,
pub output_path: Option<String>,
pub options: Vec<ReplayNormalizedRequestOptions>,
}
Expand description
Provides a configuration for a Tarid Machine -> Nautilus data -> Parquet replay run.
Fields§
§tardis_ws_url: Option<String>
The Tardis Machine websocket url.
normalize_symbols: Option<bool>
If symbols should be normalized with Nautilus conventions.
output_path: Option<String>
The output directory for writing Nautilus format Parquet files.
options: Vec<ReplayNormalizedRequestOptions>
The Tardis Machine replay options.
Trait Implementations§
Source§impl Clone for TardisReplayConfig
impl Clone for TardisReplayConfig
Source§fn clone(&self) -> TardisReplayConfig
fn clone(&self) -> TardisReplayConfig
Returns a copy 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 TardisReplayConfig
impl Debug for TardisReplayConfig
Source§impl<'de> Deserialize<'de> for TardisReplayConfig
impl<'de> Deserialize<'de> for TardisReplayConfig
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
Auto Trait Implementations§
impl Freeze for TardisReplayConfig
impl RefUnwindSafe for TardisReplayConfig
impl Send for TardisReplayConfig
impl Sync for TardisReplayConfig
impl Unpin for TardisReplayConfig
impl UnwindSafe for TardisReplayConfig
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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