-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing Methods from Deref<Target={primitive}>
section in documentation for types in #![no_std]
crates
#32553
Comments
This is a duplicate of #32129 |
This isn't a dupe of #32129. The issue here is the lack of the |
Here is a reduced testcase: #![no_std]
pub struct DeStr;
impl core::ops::Deref for DeStr {
type Target = str;
fn deref(&self) -> &str {
unimplemented!()
}
} |
String
documentationMethods from Deref<Target={primitive}>
section in documentation for types in #![no_std]
crates
This looks like a duplicate of #73423. |
More intra-doc links, add explicit exception list to linkchecker Fixes the broken links behind rust-lang#32553 Progress on rust-lang#32130 and rust-lang#32129 except for a small number of links. Instead of whitelisting entire files, I've changed the code to whitelist specific links in specific files, and added a comment requesting people explain the reasons they add exceptions. I'm not sure if we should close those issues in favor of the already filed intra-doc link issues.
|
The links to
as_ptr
andchars
on the collection crates page of String are broken.This is because they refer to methods of
str
but link to the same page (String
), relying on theMethods from Deref<Target=str>
section which is missing for some reason (seems to apply to the entirecollections
crate).The text was updated successfully, but these errors were encountered: