pub trait ActionCompute: 'static {
// Required method
fn compute(&self, ctx: &ActionContext<'_>) -> Vec<Op>;
}Expand description
User-written half of Action. The deterministic effect-list
computation is the only domain logic the kernel runs.