-
Notifications
You must be signed in to change notification settings - Fork 13.5k
impl PartialEq<{str,String}> for {Path,PathBuf}
#140956
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
base: master
Are you sure you want to change the base?
Conversation
This comment has been minimized.
This comment has been minimized.
44bb04c
to
90838cd
Compare
This comment has been minimized.
This comment has been minimized.
90838cd
to
c7d5b49
Compare
This comment has been minimized.
This comment has been minimized.
c7d5b49
to
f908d17
Compare
This comment has been minimized.
This comment has been minimized.
Comparison of paths and strings is expected to be possible and needed e.g. in tests. This change adds the impls os `PartialEq` between strings and paths, both owned and unsized, in both directions. ACP: rust-lang/libs-team#151
f908d17
to
aab1563
Compare
r? libs-api |
Starting a crater run since we've previously had type inference issues with @bors try |
… r=<try> `impl PartialEq<{str,String}> for {Path,PathBuf}` This is a revival of rust-lang#105877 Comparison of paths and strings is expected to be possible and needed e.g. in tests. This change adds the impls os `PartialEq` between strings and paths, both owned and unsized, in both directions. ACP: rust-lang/libs-team#151
☀️ Try build successful - checks-actions |
@craterbot check |
👌 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
🚧 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
🎉 Experiment
|
If I'm looking at the report correctly (it's crashing my browser, I had to read it in source code :D) the two regressions are unrelated and supposed fixes are likely unrelated as well. |
@bors r+ |
@bors r- Actually this still needs to go through FCP. |
@rfcbot merge |
Team member @Amanieu has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
@rfcbot cancel |
@Amanieu proposal cancelled. |
@rfcbot merge |
Team member @Amanieu has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
This is a revival of #105877
Comparison of paths and strings is expected to be possible and needed e.g. in tests. This change adds the impls os
PartialEq
between strings and paths, both owned and unsized, in both directions.ACP: rust-lang/libs-team#151