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
This is a breaking change, and shouldn't be done lightly. Perhaps delayed until we have more breaking changes that we can roll up into one release.
Right now, Arbitrary requires that types that implement it be 'static and I can't remember why. There sure are a bunch of errors when I remove this bound though. Anyways, this would also have to be removed.
The text was updated successfully, but these errors were encountered:
If we tweaked the
Arbitrary
definition into this:Then we would allow implementing
Arbitrary
for things that borrow from the input string:There are two concerns, off the top of my head:
This is a breaking change, and shouldn't be done lightly. Perhaps delayed until we have more breaking changes that we can roll up into one release.
Right now,
Arbitrary
requires that types that implement it be'static
and I can't remember why. There sure are a bunch of errors when I remove this bound though. Anyways, this would also have to be removed.The text was updated successfully, but these errors were encountered: