pub struct SimulationResult {
pub values: Vec<f64>,
pub final_value: f64,
pub min_value: f64,
pub max_value: f64,
pub steps: usize,
}Fields§
§values: Vec<f64>§final_value: f64§min_value: f64§max_value: f64§steps: usizeImplementations§
Trait Implementations§
Source§impl Clone for SimulationResult
impl Clone for SimulationResult
Source§fn clone(&self) -> SimulationResult
fn clone(&self) -> SimulationResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SimulationResult
impl Debug for SimulationResult
Source§impl PartialEq for SimulationResult
impl PartialEq for SimulationResult
Source§fn eq(&self, other: &SimulationResult) -> bool
fn eq(&self, other: &SimulationResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SimulationResult
Auto Trait Implementations§
impl Freeze for SimulationResult
impl RefUnwindSafe for SimulationResult
impl Send for SimulationResult
impl Sync for SimulationResult
impl Unpin for SimulationResult
impl UnsafeUnpin for SimulationResult
impl UnwindSafe for SimulationResult
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