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
a search for Result::Ok will show first the method result::Result::ok, then several aliases such as io::Result::Ok, then result::Result::Ok, then more aliases.
there are two changes required to present a more logical order:
prioritize variants over methods (inspired by this discussion)
de-prioritize type aliases and variants/fields thereof.
a search for
Result::Okwill show first the methodresult::Result::ok, then several aliases such asio::Result::Ok, thenresult::Result::Ok, then more aliases.there are two changes required to present a more logical order: