-
Notifications
You must be signed in to change notification settings - Fork 13.4k
regression: cant compare str
with &str
#130575
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, this is caused by stabilization of Both crates ( // difference in signature, on `Option<T>`
// extension traits from broken crates
fn is_none_or(&self, f: impl FnOnce(&T) -> bool) -> bool
// standard library, stabilized
fn is_none_or(self, f: impl FnOnce(T) -> bool) -> bool Stabilization of the inherent method The crates both still work on beta, just their tests fail, and most users of the crates will likely fail if they make use of Since 1.81, users of the either crate that use
However, since unstable |
@mztikk @Embers-of-the-Fire Heads up: the stablization of |
Discussed in libs meeting; we consider this acceptable. |
I think this was caused by stabilizing
is_none_or
?note: if this breakage was accepted by the relevant team then this issue can be closed.
The text was updated successfully, but these errors were encountered: