pub struct SimulationOutput {
pub directory: Option<PathBuf>,
pub save_iterations: bool,
pub generate_summary: bool,
}Expand description
Simulation output configuration
Fields§
§directory: Option<PathBuf>Output directory
save_iterations: boolSave individual iteration results
generate_summary: boolGenerate summary report
Trait Implementations§
Source§impl Clone for SimulationOutput
impl Clone for SimulationOutput
Source§fn clone(&self) -> SimulationOutput
fn clone(&self) -> SimulationOutput
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 SimulationOutput
impl Debug for SimulationOutput
Source§impl Default for SimulationOutput
impl Default for SimulationOutput
Source§fn default() -> SimulationOutput
fn default() -> SimulationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SimulationOutput
impl<'de> Deserialize<'de> for SimulationOutput
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
Auto Trait Implementations§
impl Freeze for SimulationOutput
impl RefUnwindSafe for SimulationOutput
impl Send for SimulationOutput
impl Sync for SimulationOutput
impl Unpin for SimulationOutput
impl UnsafeUnpin for SimulationOutput
impl UnwindSafe for SimulationOutput
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