1 2 3 4 5 6 7
use crate::template::syntax::template_token::TemplateToken; #[derive(Debug)] pub enum Token { Text(String), Template(TemplateToken), }