pub type Hash = Cow<'static, str>;
A hash of an API surface, stored as a hexadecimal string.
pub enum Hash { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.