pub struct RunResult {
pub bars: usize,
pub plots: BTreeMap<String, Vec<Option<f64>>>,
pub logs: Vec<LogEntry>,
pub alerts: Vec<AlertCondition>,
pub indicator: Option<Indicator>,
pub inputs: Vec<Input>,
}Expand description
A run’s per-bar outputs turned into columns.
Drawings are missing because the output traits expose labels, lines and boxes only by id, so there is no way to enumerate what a bar created.
Fields§
§bars: usize§plots: BTreeMap<String, Vec<Option<f64>>>Plotted values by title, one slot per bar; None where the plot was na.
logs: Vec<LogEntry>§alerts: Vec<AlertCondition>§indicator: Option<Indicator>§inputs: Vec<Input>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnsafeUnpin for RunResult
impl UnwindSafe for RunResult
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