pub struct StrategyBreakEvenSideInput {
pub pivot: f64,
pub boundary: f64,
pub scan_step: f64,
pub tolerance: Option<f64>,
pub max_iterations: Option<usize>,
}Fields§
§pivot: f64§boundary: f64§scan_step: f64§tolerance: Option<f64>§max_iterations: Option<usize>Trait Implementations§
Source§impl Clone for StrategyBreakEvenSideInput
impl Clone for StrategyBreakEvenSideInput
Source§fn clone(&self) -> StrategyBreakEvenSideInput
fn clone(&self) -> StrategyBreakEvenSideInput
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 moreimpl Copy for StrategyBreakEvenSideInput
Source§impl Debug for StrategyBreakEvenSideInput
impl Debug for StrategyBreakEvenSideInput
Source§impl<'de> Deserialize<'de> for StrategyBreakEvenSideInput
impl<'de> Deserialize<'de> for StrategyBreakEvenSideInput
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 StrategyBreakEvenSideInput
Auto Trait Implementations§
impl Freeze for StrategyBreakEvenSideInput
impl RefUnwindSafe for StrategyBreakEvenSideInput
impl Send for StrategyBreakEvenSideInput
impl Sync for StrategyBreakEvenSideInput
impl Unpin for StrategyBreakEvenSideInput
impl UnsafeUnpin for StrategyBreakEvenSideInput
impl UnwindSafe for StrategyBreakEvenSideInput
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