pub struct RunDescriptor<P: AsRef<Path>> {
pub time_duration: f32,
pub verbose: bool,
pub save_settings: Option<SaveSettings<P>>,
}Expand description
Describes a simulation run.
Fields§
§time_duration: f32How long, in temperal units, the simulation should run.
verbose: boolWhether or not to print information to the console.
save_settings: Option<SaveSettings<P>>What, if any, information to save to file.
Auto Trait Implementations§
impl<P> Freeze for RunDescriptor<P>where
P: Freeze,
impl<P> RefUnwindSafe for RunDescriptor<P>where
P: RefUnwindSafe,
impl<P> Send for RunDescriptor<P>where
P: Send,
impl<P> Sync for RunDescriptor<P>where
P: Sync,
impl<P> Unpin for RunDescriptor<P>where
P: Unpin,
impl<P> UnwindSafe for RunDescriptor<P>where
P: UnwindSafe,
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