Did you know that you can add doc aliases to your #Rust items (struct, method etc.), so that they appear in #RustDoc search results, when searching for that alias?๐
You can even add multiple aliases at once, like this:
#[doc(alias("modify", "index"))]
pub fn modified_field_indices(...);
Such a useful feature (that should be used more often)!
โ ๏ธ Note that it will only show in results, when searching for the full alias!
