1use super::representation::*; 2 3// 4// Symbol 5// 6 7/// Node symbol. 8/// 9/// Note that its char count *must be 1*. 10pub enum Symbol<'string> { 11 /// Representation. 12 Representation(Representation), 13 14 /// String. 15 String(&'string str), 16}