1 2 3 4 5 6 7 8
use crate::{Label, StateId}; #[derive(Hash, Debug, PartialOrd, PartialEq, Eq, Clone)] pub struct Element { pub ilabel: Label, pub olabel: Label, pub nextstate: StateId, }