varar_core/step_kind.rs
1//! The role a step definition plays — port of `step-role.ts`'s `StepKind` /
2//! `StepKind.java`.
3
4/// A step's role: a stimulus drives the software (arranges + acts); a sensor is
5/// the read-only assertion (the only role that returns for comparison).
6#[derive(Clone, Copy, Debug, PartialEq, Eq)]
7pub enum StepKind {
8 Stimulus,
9 Sensor,
10}