Glancing at how Ia5String is defined in the der crate
#[derive(Clone, Eq, PartialEq, PartialOrd, Ord)]
pub struct Ia5String {
/// Inner value
inner: StrOwned,
}
I do not immediately see a reason for why std::hash::Hash is not implemented or derived for this type. Was this a deliberate decision, or is this something that could be added in a PR? Implementing the Hash trait would seem trivial to me at first glance.
Glancing at how
Ia5Stringis defined in thedercrateI do not immediately see a reason for why
std::hash::Hashis not implemented or derived for this type. Was this a deliberate decision, or is this something that could be added in a PR? Implementing theHashtrait would seem trivial to me at first glance.