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