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