pub type Key<'text> = Cow<'text, str>;
A Key is simply an alias for Cow<str>
Cow<str>
pub enum Key<'text> { Borrowed(&'text str), Owned(String), }
Borrowed data.
Owned data.