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