pub struct ExecutionAnalysisRequest {
pub data_dir: PathBuf,
pub start: Option<DateTime<Utc>>,
pub end: Option<DateTime<Utc>>,
}Expand description
Request payload for execution analytics.
Fields§
§data_dir: PathBufDirectory that contains orders/, fills/ and ticks/ sub-directories.
start: Option<DateTime<Utc>>Optional inclusive lower bound for the analyzed window.
end: Option<DateTime<Utc>>Optional inclusive upper bound for the analyzed window.
Trait Implementations§
Source§impl Clone for ExecutionAnalysisRequest
impl Clone for ExecutionAnalysisRequest
Source§fn clone(&self) -> ExecutionAnalysisRequest
fn clone(&self) -> ExecutionAnalysisRequest
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 moreAuto Trait Implementations§
impl Freeze for ExecutionAnalysisRequest
impl RefUnwindSafe for ExecutionAnalysisRequest
impl Send for ExecutionAnalysisRequest
impl Sync for ExecutionAnalysisRequest
impl Unpin for ExecutionAnalysisRequest
impl UnwindSafe for ExecutionAnalysisRequest
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