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
Unfortunately in 1.0 calling .by_vals() returns an opaque type (impl Iterator<Item = bool>) which I cannot use anymore in this trait definition. Any pointers on how to either work around this, or if this could be changed to return a concrete type again? Thank you
The text was updated successfully, but these errors were encountered:
I trying to upgrade from
0.22
to1.0
and running into the following issue.I have a trait like this
which currently is implemented using sth like this:
Unfortunately in
1.0
calling.by_vals()
returns an opaque type (impl Iterator<Item = bool>
) which I cannot use anymore in this trait definition. Any pointers on how to either work around this, or if this could be changed to return a concrete type again? Thank youThe text was updated successfully, but these errors were encountered: