usesuper::situation::Situation;usestd::fmt::Debug;/// An action transforms one situation into another.
////// Actions are the morphisms in the praxis category.
/// They carry full context of WHAT is being attempted.
pubtraitAction: Clone + Debug {/// The situation type this action operates on.
typeSit: Situation;/// Human-readable description of this action.
fndescribe(&self)-> String;}