pub struct LeastSquaresPlan {
pub bounds: Option<Bounds>,
pub variable_scale: Vec<f64>,
pub residual_scale: Vec<f64>,
pub derivative: DerivativeSource,
pub policy: StepPolicy,
pub tolerances: Tolerances,
pub limits: Limits,
pub initial_damping: f64,
}Fields§
§bounds: Option<Bounds>§variable_scale: Vec<f64>§residual_scale: Vec<f64>§derivative: DerivativeSource§policy: StepPolicy§tolerances: Tolerances§limits: Limits§initial_damping: f64Trait Implementations§
Source§impl Clone for LeastSquaresPlan
impl Clone for LeastSquaresPlan
Source§fn clone(&self) -> LeastSquaresPlan
fn clone(&self) -> LeastSquaresPlan
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 LeastSquaresPlan
impl Debug for LeastSquaresPlan
Source§impl PartialEq for LeastSquaresPlan
impl PartialEq for LeastSquaresPlan
impl StructuralPartialEq for LeastSquaresPlan
Auto Trait Implementations§
impl Freeze for LeastSquaresPlan
impl RefUnwindSafe for LeastSquaresPlan
impl Send for LeastSquaresPlan
impl Sync for LeastSquaresPlan
impl Unpin for LeastSquaresPlan
impl UnsafeUnpin for LeastSquaresPlan
impl UnwindSafe for LeastSquaresPlan
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