You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We probably don't need/want any out-of-the box parsing for key-value pairs, since the separators... may vary. But how about
KeyValueMap::new(given_map: HashMap) that would take its ownership (especially since the current implementation is a wrapper), and optionally:
a conversion function like KeyValueMap::new(it: Iterator<Item = (impl String, impl String)>) -> Self? (Or implementing TryFrom, but something tells me that TryFrom is not a good way to go here.)
The text was updated successfully, but these errors were encountered:
Thank you for
Tags::parse(..)
.We probably don't need/want any out-of-the box parsing for key-value pairs, since the separators... may vary. But how about
KeyValueMap::new(given_map: HashMap)
that would take its ownership (especially since the current implementation is a wrapper), and optionally:KeyValueMap::new(it: Iterator<Item = (impl String, impl String)>) -> Self
? (Or implementingTryFrom
, but something tells me thatTryFrom
is not a good way to go here.)The text was updated successfully, but these errors were encountered: