mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
Remove auto trait implementation section when empty
This commit is contained in:
parent
fedce67cd2
commit
7dc71ec009
@ -3181,14 +3181,16 @@ fn render_assoc_items(w: &mut fmt::Formatter,
|
|||||||
render_impls(cx, w, concrete, containing_item)?;
|
render_impls(cx, w, concrete, containing_item)?;
|
||||||
write!(w, "</div>")?;
|
write!(w, "</div>")?;
|
||||||
|
|
||||||
write!(w, "
|
if !synthetic.is_empty() {
|
||||||
<h2 id='synthetic-implementations' class='small-section-header'>
|
write!(w, "
|
||||||
Auto Trait Implementations<a href='#synthetic-implementations' class='anchor'></a>
|
<h2 id='synthetic-implementations' class='small-section-header'>
|
||||||
</h2>
|
Auto Trait Implementations<a href='#synthetic-implementations' class='anchor'></a>
|
||||||
<div id='synthetic-implementations-list'>
|
</h2>
|
||||||
")?;
|
<div id='synthetic-implementations-list'>
|
||||||
render_impls(cx, w, synthetic, containing_item)?;
|
")?;
|
||||||
write!(w, "</div>")?;
|
render_impls(cx, w, synthetic, containing_item)?;
|
||||||
|
write!(w, "</div>")?;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
20
src/test/rustdoc/empty-section.rs
Normal file
20
src/test/rustdoc/empty-section.rs
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
||||||
|
// file at the top-level directory of this distribution and at
|
||||||
|
// http://rust-lang.org/COPYRIGHT.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||||
|
// option. This file may not be copied, modified, or distributed
|
||||||
|
// except according to those terms.
|
||||||
|
|
||||||
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
|
#![feature(optin_builtin_traits)]
|
||||||
|
|
||||||
|
pub struct Foo;
|
||||||
|
|
||||||
|
// @has foo/struct.Foo.html
|
||||||
|
// @!has - '//*[@class="synthetic-implementations"]' 'Auto Trait Implementations'
|
||||||
|
impl !Send for Foo {}
|
||||||
|
impl !Sync for Foo {}
|
Loading…
Reference in New Issue
Block a user