forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#113241 - poliorcetics:85138-doc-object-safety, r=GuillaumeGomez rustdoc: Document lack of object safety on affected traits Closes rust-lang#85138 I saw the issue didn't have any recent activity, if there is another MR for it I missed it. I want the issue to move forward so here is my proposition. It takes some space just before the "Implementors" section and only if the trait is **not** object safe since it is the only case where special care must be taken in some cases and this has the benefit of avoiding generation of HTML in (I hope) the common case.
- Loading branch information
Showing
6 changed files
with
61 additions
and
0 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
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
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,27 @@ | ||
#![crate_name = "foo"] | ||
|
||
// @has 'foo/trait.Unsafe.html' | ||
// @has - '//*[@class="object-safety-info"]' 'This trait is not object safe.' | ||
// @has - '//*[@id="object-safety"]' 'Object Safety' | ||
pub trait Unsafe { | ||
fn foo() -> Self; | ||
} | ||
|
||
// @has 'foo/trait.Unsafe2.html' | ||
// @has - '//*[@class="object-safety-info"]' 'This trait is not object safe.' | ||
// @has - '//*[@id="object-safety"]' 'Object Safety' | ||
pub trait Unsafe2<T> { | ||
fn foo(i: T); | ||
} | ||
|
||
// @has 'foo/trait.Safe.html' | ||
// @!has - '//*[@class="object-safety-info"]' '' | ||
// @!has - '//*[@id="object-safety"]' '' | ||
pub trait Safe { | ||
fn foo(&self); | ||
} | ||
|
||
// @has 'foo/struct.Foo.html' | ||
// @!has - '//*[@class="object-safety-info"]' '' | ||
// @!has - '//*[@id="object-safety"]' '' | ||
pub struct Foo; |