Skip to content
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

rustdoc-search: show type signature on type-driven SERP #117112

Closed

Commits on Oct 25, 2023

  1. rustdoc-search: simplify the checkTypes fast path

    This reduces code size while still matching the common case
    for plain, concrete types.
    notriddle committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    6fb981d View commit details
    Browse the repository at this point in the history
  2. rustdoc-search: show type signature on type-driven SERP

    This displays the function signature, as rustdoc understands it,
    on the In Parameters, In Return Types, and In Function Signature
    pages, but not in the In Names page, since it's not used there.
    It also highlights the matching parts, to clarify why a function
    is considered a good match.
    notriddle committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    8206a6c View commit details
    Browse the repository at this point in the history
  3. rustdoc-search: disambiguate generics

    This cleans up the Simd page. It should be sufficient, even though
    it can wind up showing more than necessary, but allows each item
    to be considered in isolation.
    notriddle committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    a463f43 View commit details
    Browse the repository at this point in the history