1//! Defines fundamental types used throughout the crate. 2 3/// Token content. 4pub type Token = Vec<u8>; 5 6/// Token identifier. 7pub type TokenId = u32; 8 9/// State id. 10pub type StateId = u32;