pub trait State:
Clone
+ Send
+ Sync
+ 'static
+ Add<Output = Self>
+ Mul<f64, Output = Self> {
// Required method
fn zero() -> Self;
}Expand description
Algebraic requirements for SDE state types.
f64 and nalgebra::SVector<f64, N> both satisfy this automatically.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".