pub type Fingerprint = Cow<'static, [Cow<'static, str>]>;
The type of the Error::fingerprint field.
Error::fingerprint
pub enum Fingerprint { Borrowed(&'static [Cow<'static, str>]), Owned(Vec<Cow<'static, str>>), }
Borrowed data.
Owned data.