Struct rgsl::types::multifit_solver::MultiFitFunctionFdf
source · [−]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: usize
Implementations
Auto Trait Implementations
impl !RefUnwindSafe for MultiFitFunctionFdf
impl !Send for MultiFitFunctionFdf
impl !Sync for MultiFitFunctionFdf
impl Unpin for MultiFitFunctionFdf
impl !UnwindSafe for MultiFitFunctionFdf
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more