pub type Atom<'a> = Cow<'a, str>;
pub enum Atom<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.