pub struct PredictorExecution {
pub algorithm_arn: Option<String>,
pub test_windows: Option<Vec<TestWindowSummary>>,
}Expand description
The algorithm used to perform a backtest and the status of those tests.
Fields§
§algorithm_arn: Option<String>The ARN of the algorithm used to test the predictor.
test_windows: Option<Vec<TestWindowSummary>>An array of test windows used to evaluate the algorithm. The NumberOfBacktestWindows from the object determines the number of windows in the array.
Trait Implementations§
Source§impl Clone for PredictorExecution
impl Clone for PredictorExecution
Source§fn clone(&self) -> PredictorExecution
fn clone(&self) -> PredictorExecution
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 moreSource§impl Debug for PredictorExecution
impl Debug for PredictorExecution
Source§impl Default for PredictorExecution
impl Default for PredictorExecution
Source§fn default() -> PredictorExecution
fn default() -> PredictorExecution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PredictorExecution
impl<'de> Deserialize<'de> for PredictorExecution
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 PartialEq for PredictorExecution
impl PartialEq for PredictorExecution
impl StructuralPartialEq for PredictorExecution
Auto Trait Implementations§
impl Freeze for PredictorExecution
impl RefUnwindSafe for PredictorExecution
impl Send for PredictorExecution
impl Sync for PredictorExecution
impl Unpin for PredictorExecution
impl UnwindSafe for PredictorExecution
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