A set of small traits that enable tokenizing some common types that get tokenizing erased normally, such as Option<T> as Some(_) or None, Box<T> as Box::new(_), etc.
Option<T>
Some(_)
None
Box<T>
Box::new(_)