pub type KeyStrType<'a> = Cow<'a, str>;
The string type used. Can be toggled between &str and Cow via cowstr feature flag
cowstr
enum KeyStrType<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.