1 2 3 4 5 6 7 8 9 10 11 12 13
pub enum StepState { Indexed = 0, Editing = 1, Complete = 2, Disabled = 3, Error = 4, } impl Default for StepState { fn default() -> Self { Self::Indexed } }