pub trait Jacobian{
// Required methods
fn fill_into(self, vector: &mut Vector);
fn fill_into_chained(self, other: Vector, vector: &mut Vector);
}
Expand description
Common methods for Jacobians.
Required Methods§
Sourcefn fill_into_chained(self, other: Vector, vector: &mut Vector)
fn fill_into_chained(self, other: Vector, vector: &mut Vector)
Fills the Jacobian chained with a vector into another vector.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.