pub trait DynamicsModel: Send + Sync {
// Required method
fn derivative(
&self,
state: &CartesianState,
ctx: &PropagationContext,
) -> Result<StateDerivative, PropagationError>;
}Required Methods§
fn derivative( &self, state: &CartesianState, ctx: &PropagationContext, ) -> Result<StateDerivative, PropagationError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".