pub struct BacktestDataConfig { /* private fields */ }
Expand description
Represents the data configuration for one specific backtest run.
Implementations§
Source§impl BacktestDataConfig
impl BacktestDataConfig
pub const fn new( catalog_path: String, catalog_fs_protocol: Option<String>, instrument_id: Option<InstrumentId>, start_time: Option<UnixNanos>, end_time: Option<UnixNanos>, filter_expr: Option<String>, client_id: Option<ClientId>, metadata: Option<HashMap<String, String>>, bar_spec: Option<BarSpecification>, ) -> Self
Trait Implementations§
Source§impl Clone for BacktestDataConfig
impl Clone for BacktestDataConfig
Source§fn clone(&self) -> BacktestDataConfig
fn clone(&self) -> BacktestDataConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for BacktestDataConfig
impl RefUnwindSafe for BacktestDataConfig
impl Send for BacktestDataConfig
impl Sync for BacktestDataConfig
impl Unpin for BacktestDataConfig
impl UnwindSafe for BacktestDataConfig
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