| 39 | |
| 40 | #[derive(Debug, Clone, PartialEq)] |
| 41 | pub struct BacktestData { |
| 42 | pub returns: Vec<f64>, |
| 43 | pub label_spans: Vec<(NaiveDateTime, NaiveDateTime)>, |
| 44 | } |
| 45 | |
| 46 | impl BacktestData { |
| 47 | pub fn validate(&self) -> Result<(), String> { |
nothing calls this directly
no outgoing calls
no test coverage detected