-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preserve non-local recursive
Deref
impls
This adjusts the `rustdoc` trait impl collection path to preserve `Deref` impls from other crates. This adds a first pass to map all of the `Deref` type to target edges and then recursively preserves all targets.
- Loading branch information
Showing
2 changed files
with
90 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// ignore-tidy-linelength | ||
|
||
// #26207: Show all methods reachable via Deref impls, recursing through multiple dereferencing | ||
// levels and across multiple crates. | ||
|
||
// @has 'foo/struct.Foo.html' | ||
// @has '-' '//*[@id="deref-methods-PathBuf"]' 'Methods from Deref<Target = PathBuf>' | ||
// @has '-' '//*[@class="impl-items"]//*[@id="method.as_path"]' 'pub fn as_path(&self)' | ||
// @has '-' '//*[@id="deref-methods-Path"]' 'Methods from Deref<Target = Path>' | ||
// @has '-' '//*[@class="impl-items"]//*[@id="method.exists"]' 'pub fn exists(&self)' | ||
// @has '-' '//*[@class="sidebar-title"][@href="#deref-methods-PathBuf"]' 'Methods from Deref<Target=PathBuf>' | ||
// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.as_path"]' 'as_path' | ||
// @has '-' '//*[@class="sidebar-title"][@href="#deref-methods-Path"]' 'Methods from Deref<Target=Path>' | ||
// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.exists"]' 'exists' | ||
|
||
#![crate_name = "foo"] | ||
|
||
use std::ops::Deref; | ||
use std::path::PathBuf; | ||
|
||
pub struct Foo(PathBuf); | ||
|
||
impl Deref for Foo { | ||
type Target = PathBuf; | ||
fn deref(&self) -> &PathBuf { &self.0 } | ||
} |