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