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
Yeah, there were a few breaking changes from 1x to 2x, hence the major version bump. 😄
Now for your specific issue, instead of returning a Vec like we used to, that method now returns an iterator which is far more flexible, but it does have the downside like you noted. To fix that code, all you need to do is add
Nothing critical, though you might want to know:
As the return value of the
ArgMatches::values_of()
now returns something which does not implementDebug
, the update ended in a compile error.As said, this is nothing serious for me, and this issue is just FYI. Feel free to close this issue after reading.
The text was updated successfully, but these errors were encountered: