pub trait NonLinearOp: Op {
// Required method
fn call_inplace(&self, x: &Self::V, t: Self::T, y: &mut Self::V);
// Provided method
fn call(&self, x: &Self::V, t: Self::T) -> Self::V { ... }
}Required Methods§
Sourcefn call_inplace(&self, x: &Self::V, t: Self::T, y: &mut Self::V)
fn call_inplace(&self, x: &Self::V, t: Self::T, y: &mut Self::V)
Compute the operator F(x, t) at a given state and time.
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".