pub trait Simulate<S>where
S: State,{
// Required method
fn simulate(state: &S, neighbor_states: &[&S]) -> S;
}
Expand description
Trait that tells QDF how to simulate states of space.
Required Methods§
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.