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
In a discussion in our Rust group, someone incorrectly uses ok() without checking its return value, causing confusing issue. As Result::{is_ok, is_err} are already marked #[must_use] in #59610, I don't see any reason Result::{ok, err} shouldn't be.