1 2 3 4 5 6 7 8 9
#[derive(Debug, Clone, PartialEq, Eq)] pub(crate) enum Tok { LAngle, // < RAngle, // > Slash, // / LBrace, // { RBrace, // } Text(String), // arbitrary text without special characters }