Closed
Description
The rustdoc help says:
Search functions by type signature (e.g., vec -> usize or * -> vec)
Based on this example, I expected the natural generalization vec -> *
to also work and show all functions that take a vec as input, but that query shows no result at all. I am not sure if there is any way to show "all functions that take T
as input", which is surprising given that the same is possible for the return type.