Skip to main content

Steppable

Trait Steppable 

Source
pub trait Steppable {
    // Required method
    fn step(&mut self, time_step: &TimeStep);
}
Expand description

Trait for objects that can be stepped forward in time.

Required Methods§

Source

fn step(&mut self, time_step: &TimeStep)

Advance the simulation by one time step.

Implementors§