pub struct MultiFitFunctionFdf {
pub f: Option<Box<dyn Fn(VectorF64, VectorF64) -> Value>>,
pub df: Option<Box<dyn Fn(VectorF64, MatrixF64) -> Value>>,
pub fdf: Option<Box<dyn Fn(VectorF64, VectorF64, MatrixF64) -> Value>>,
pub n: usize,
pub p: usize,
/* private fields */
}Fields§
§f: Option<Box<dyn Fn(VectorF64, VectorF64) -> Value>>§df: Option<Box<dyn Fn(VectorF64, MatrixF64) -> Value>>§fdf: Option<Box<dyn Fn(VectorF64, VectorF64, MatrixF64) -> Value>>§n: usize§p: usizeImplementations§
Auto Trait Implementations§
impl Freeze for MultiFitFunctionFdf
impl !RefUnwindSafe for MultiFitFunctionFdf
impl !Send for MultiFitFunctionFdf
impl !Sync for MultiFitFunctionFdf
impl Unpin for MultiFitFunctionFdf
impl !UnwindSafe for MultiFitFunctionFdf
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