Skip to content

Commit b8c0767

Browse files
authored
Unrolled build for rust-lang#115604
Rollup merge of rust-lang#115604 - GuillaumeGomez:private-fields-tuple-struct, r=notriddle rustdoc: Render private fields in tuple struct as `/* private fields */` Reopening of rust-lang#110552. All that was missing was a test for the different cases so I added it into the second commit. Description from the original PR: > I've gotten some feedback that the current rustdoc rendering of... > > ``` > struct HasPrivateFields(_); > ``` > > ...is confusing, and I agree with that feedback, especially compared to the field struct case: > > ``` > struct HasPrivateFields { /* private fields */ } > ``` > > So this PR makes it so that when all of the fields of a tuple variant are private, just render it with the `/* private fields */` comment. We can't *always* render it like that, for example when there's a mix of private and public fields. cc ````@jsha```` r? ````@notriddle````
2 parents 3d24970 + c4bb70f commit b8c0767

8 files changed

+53
-22
lines changed

src/librustdoc/html/render/print_item.rs

+30-14
Original file line numberDiff line numberDiff line change
@@ -1384,6 +1384,12 @@ fn print_tuple_struct_fields<'a, 'cx: 'a>(
13841384
s: &'a [clean::Item],
13851385
) -> impl fmt::Display + 'a + Captures<'cx> {
13861386
display_fn(|f| {
1387+
if s.iter()
1388+
.all(|field| matches!(*field.kind, clean::StrippedItem(box clean::StructFieldItem(..))))
1389+
{
1390+
return f.write_str("/* private fields */");
1391+
}
1392+
13871393
for (i, ty) in s.iter().enumerate() {
13881394
if i > 0 {
13891395
f.write_str(", ")?;
@@ -2069,21 +2075,31 @@ fn render_struct_fields(
20692075
}
20702076
Some(CtorKind::Fn) => {
20712077
w.write_str("(");
2072-
for (i, field) in fields.iter().enumerate() {
2073-
if i > 0 {
2074-
w.write_str(", ");
2075-
}
2076-
match *field.kind {
2077-
clean::StrippedItem(box clean::StructFieldItem(..)) => write!(w, "_"),
2078-
clean::StructFieldItem(ref ty) => {
2079-
write!(
2080-
w,
2081-
"{}{}",
2082-
visibility_print_with_space(field.visibility(tcx), field.item_id, cx),
2083-
ty.print(cx),
2084-
)
2078+
if fields.iter().all(|field| {
2079+
matches!(*field.kind, clean::StrippedItem(box clean::StructFieldItem(..)))
2080+
}) {
2081+
write!(w, "/* private fields */");
2082+
} else {
2083+
for (i, field) in fields.iter().enumerate() {
2084+
if i > 0 {
2085+
w.write_str(", ");
2086+
}
2087+
match *field.kind {
2088+
clean::StrippedItem(box clean::StructFieldItem(..)) => write!(w, "_"),
2089+
clean::StructFieldItem(ref ty) => {
2090+
write!(
2091+
w,
2092+
"{}{}",
2093+
visibility_print_with_space(
2094+
field.visibility(tcx),
2095+
field.item_id,
2096+
cx
2097+
),
2098+
ty.print(cx),
2099+
)
2100+
}
2101+
_ => unreachable!(),
20852102
}
2086-
_ => unreachable!(),
20872103
}
20882104
}
20892105
w.write_str(")");
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![crate_name = "foo"]
22

33
// @has foo/struct.Foo.html '//pre[@class="rust item-decl"]' \
4-
// 'pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>(_);'
4+
// 'pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>('
55
pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>(T);

tests/rustdoc/const-generics/const-generics-docs.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ impl<const N: usize> Trait<N> for [u8; N] {}
3333
// @has foo/struct.Foo.html '//pre[@class="rust item-decl"]' \
3434
// 'pub struct Foo<const N: usize> where u8: Trait<N>'
3535
pub struct Foo<const N: usize> where u8: Trait<N>;
36-
// @has foo/struct.Bar.html '//pre[@class="rust item-decl"]' 'pub struct Bar<T, const N: usize>(_)'
36+
// @has foo/struct.Bar.html '//pre[@class="rust item-decl"]' 'pub struct Bar<T, const N: usize>('
3737
pub struct Bar<T, const N: usize>([T; N]);
3838

3939
// @has foo/struct.Foo.html '//*[@id="impl-Foo%3CM%3E"]/h3[@class="code-header"]' 'impl<const M: usize> Foo<M>where u8: Trait<M>'
@@ -92,7 +92,7 @@ macro_rules! define_me {
9292
}
9393

9494
// @has foo/struct.Foz.html '//pre[@class="rust item-decl"]' \
95-
// 'pub struct Foz<const N: usize>(_);'
95+
// 'pub struct Foz<const N: usize>(/* private fields */);'
9696
define_me!(Foz<N>);
9797

9898
trait Q {

tests/rustdoc/issue-88600.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ pub struct S;
88

99
// @has issue_88600/enum.FooEnum.html
1010
pub enum FooEnum {
11-
// @has - '//*[@id="variant.HiddenTupleItem"]//h3' 'HiddenTupleItem(_)'
11+
// @has - '//*[@id="variant.HiddenTupleItem"]//h3' 'HiddenTupleItem(/* private fields */)'
1212
// @count - '//*[@id="variant.HiddenTupleItem.field.0"]' 0
1313
HiddenTupleItem(#[doc(hidden)] H),
14-
// @has - '//*[@id="variant.MultipleHidden"]//h3' 'MultipleHidden(_, _)'
14+
// @has - '//*[@id="variant.MultipleHidden"]//h3' 'MultipleHidden(/* private fields */)'
1515
// @count - '//*[@id="variant.MultipleHidden.field.0"]' 0
1616
// @count - '//*[@id="variant.MultipleHidden.field.1"]' 0
1717
MultipleHidden(#[doc(hidden)] H, #[doc(hidden)] H),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// This test checks the diplay of "/* private fields */" sentence in tuple structs.
2+
#![crate_name = "foo"]
3+
4+
// @has 'foo/struct.A.html' '//*[@class="rust item-decl"]/code' 'pub struct A(pub u8, _);'
5+
pub struct A(pub u8, u8);
6+
// @has 'foo/struct.B.html' '//*[@class="rust item-decl"]/code' 'pub struct B(_, pub u8);'
7+
pub struct B(u8, pub u8);
8+
// @has 'foo/struct.C.html' '//*[@class="rust item-decl"]/code' 'pub struct C(_, pub u8, _);'
9+
pub struct C(u8, pub u8, u8);
10+
// @has 'foo/struct.D.html' '//*[@class="rust item-decl"]/code' 'pub struct D(pub u8, _, pub u8);'
11+
pub struct D(pub u8, u8, pub u8);
12+
// @has 'foo/struct.E.html' '//*[@class="rust item-decl"]/code' 'pub struct E(/* private fields */);'
13+
pub struct E(u8);
14+
// @has 'foo/struct.F.html' '//*[@class="rust item-decl"]/code' 'pub struct F(/* private fields */);'
15+
pub struct F(u8, u8);
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
<pre class="rust item-decl"><code>pub struct Simd&lt;T&gt;(_)
1+
<pre class="rust item-decl"><code>pub struct Simd&lt;T&gt;(/* private fields */)
22
<span class="where">where
33
T: <a class="trait" href="trait.MyTrait.html" title="trait foo::MyTrait">MyTrait</a></span>;</code></pre>
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
<code>pub struct Alpha&lt;A&gt;(_)
1+
<code>pub struct Alpha&lt;A&gt;(/* private fields */)
22
<span class="where">where
33
A: <a class="trait" href="trait.MyTrait.html" title="trait foo::MyTrait">MyTrait</a></span>;</code>

tests/rustdoc/where.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::io::Lines;
44

55
pub trait MyTrait { fn dummy(&self) { } }
66

7-
// @has foo/struct.Alpha.html '//pre' "pub struct Alpha<A>(_) where A: MyTrait"
7+
// @has foo/struct.Alpha.html '//pre' "pub struct Alpha<A>(/* private fields */) where A: MyTrait"
88
// @snapshot alpha_trait_decl - '//*[@class="rust item-decl"]/code'
99
pub struct Alpha<A>(A) where A: MyTrait;
1010
// @has foo/trait.Bravo.html '//pre' "pub trait Bravo<B>where B: MyTrait"

0 commit comments

Comments
 (0)