-
Notifications
You must be signed in to change notification settings - Fork 462
PartialEq is not implemented in version 0.2 #313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Indeed it is not. See the changelog please. :-) |
BUG #178: Drop the PartialEq and Eq impls on Regex. The PartialEq and Eq impls on Regex have been dropped. If you relied on these impls, the fix is to define a wrapper type around Regex, impl Deref on it and provide the necessary impls. |
Please, could you add an example about how do it? For beginners |
Oh absolutely! I'm on mobile right now, so it's a a little tough to write it the code, but I'll try to get the idea across and then clean it up later. :-) The low tech solution is to just change First, you need to define a wrapper type: |
With the version 0.2, I get:
The text was updated successfully, but these errors were encountered: