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