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 have had failures passing rust::Vec to span types like the one in Chromium, as it doesn't satisfy this requirement, even though it would be better if it did.
The text was updated successfully, but these errors were encountered:
`rust::Vec` fails `std::ranges::contiguous_range` checks as those have
to satisfy `random_access_range`, and `contiguous_iterator`. This has
caused mismatches with certain `span` types in other codebases.
This PR adds the necessary increment and concept category to
`Slice<T>::iterator`, to correct this issue.
Bug: dtolnay#1392
We have had failures passing
rust::Vec
tospan
types like the one in Chromium, as it doesn't satisfy this requirement, even though it would be better if it did.The text was updated successfully, but these errors were encountered: