pub trait AutoDiffManifold<T: RealField> {
// Required methods
fn plus(
&self,
x: DVectorView<'_, T>,
delta: DVectorView<'_, T>,
) -> DVector<T>;
fn minus(&self, y: DVectorView<'_, T>, x: DVectorView<'_, T>) -> DVector<T>;
}Required Methods§
fn plus(&self, x: DVectorView<'_, T>, delta: DVectorView<'_, T>) -> DVector<T>
fn minus(&self, y: DVectorView<'_, T>, x: DVectorView<'_, T>) -> DVector<T>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".