1
2
3
4
5
6
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum StepResult {
    Found,
    OpenEnd,
    ClosedEnd,
}