pub type Text = Cow<'static, str>;
Text representation.
Many things inside here can take either owned strings or string literals.
pub enum Text { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.