1
Fork 0

Rollup merge of #108723 - notriddle:notriddle/where-clause, r=GuillaumeGomez

rustdoc: function signature search with traits in `where` clause

## Before

![image](https://user-images.githubusercontent.com/1593513/222873534-a640a72a-c654-4702-9f3b-175129d9591d.png)

## After

![image](https://user-images.githubusercontent.com/1593513/222873544-fdfc431d-2b65-4b56-bede-0302ea9f153a.png)
This commit is contained in:
Matthias Krüger 2023-03-04 20:48:18 +01:00 committed by GitHub
commit 9cabc40ab1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 55 additions and 21 deletions

View file

@ -0,0 +1,7 @@
const QUERY = 'option, fnonce -> option';
const EXPECTED = {
'others': [
{ 'path': 'std::option::Option', 'name': 'map' },
],
};