pub struct Regex { pub root: Box, } pub enum Pattern { Empty, Literal(u8), Concat(Box, Box), Alt(Box, Box), Star(Box), }