pub struct SensitivityPoint {
pub param_value: f64,
pub optimal_value: f64,
pub optimal_cost: f64,
}Expand description
Sensitivity analysis: how does the optimal policy change as a parameter varies?
Fields§
§param_value: f64Parameter value.
optimal_value: f64Optimal policy value at this parameter.
optimal_cost: f64Cost at the optimal policy.
Trait Implementations§
Source§impl Clone for SensitivityPoint
impl Clone for SensitivityPoint
Source§fn clone(&self) -> SensitivityPoint
fn clone(&self) -> SensitivityPoint
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 moreAuto Trait Implementations§
impl Freeze for SensitivityPoint
impl RefUnwindSafe for SensitivityPoint
impl Send for SensitivityPoint
impl Sync for SensitivityPoint
impl Unpin for SensitivityPoint
impl UnsafeUnpin for SensitivityPoint
impl UnwindSafe for SensitivityPoint
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