pub struct RunReport {
pub scenario_id: ScenarioId,
pub seed: u64,
pub steps_executed: u64,
pub completed: bool,
pub node_snapshots: Vec<NodeSnapshot>,
pub variable_snapshots: Vec<VariableSnapshot>,
pub transfers: Vec<TransferRecord>,
pub series: BTreeMap<MetricKey, SeriesTable>,
pub final_node_values: BTreeMap<NodeId, f64>,
pub final_metrics: BTreeMap<MetricKey, f64>,
pub manifest: Option<ManifestRef>,
}Expand description
Result of one deterministic simulation run.
Fields§
§scenario_id: ScenarioId§seed: u64§steps_executed: u64§completed: bool§node_snapshots: Vec<NodeSnapshot>§variable_snapshots: Vec<VariableSnapshot>§transfers: Vec<TransferRecord>§series: BTreeMap<MetricKey, SeriesTable>§final_node_values: BTreeMap<NodeId, f64>§final_metrics: BTreeMap<MetricKey, f64>§manifest: Option<ManifestRef>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunReport
impl<'de> Deserialize<'de> for RunReport
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
impl StructuralPartialEq for RunReport
Auto Trait Implementations§
impl Freeze for RunReport
impl RefUnwindSafe for RunReport
impl Send for RunReport
impl Sync for RunReport
impl Unpin for RunReport
impl UnsafeUnpin for RunReport
impl UnwindSafe for RunReport
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