pub trait MdHdlr<StateType: Copy>: Send + Sync {
    fn handle(&mut self, state: &StateType);
}
Expand description

A Mission Design handler

Required Methods

Implementors