2021-07-25 14:57:45 +02:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
|
|
|
// @has - '//h2[@id="fields"]' 'Tuple Fields'
|
2022-10-15 11:53:47 -07:00
|
|
|
// @has - '//div[@class="sidebar-elems"]//h3/a[@href="#fields"]' 'Tuple Fields'
|
2021-07-25 14:57:45 +02:00
|
|
|
// @has - '//*[@id="structfield.0"]' '0: u32'
|
2021-11-29 17:14:05 +01:00
|
|
|
// @has - '//*[@id="main-content"]/div[@class="docblock"]' 'hello'
|
2022-08-13 00:56:16 -04:00
|
|
|
// @!has - '//*[@id="structfield.1"]' ''
|
2021-07-25 14:57:45 +02:00
|
|
|
// @has - '//*[@id="structfield.2"]' '2: char'
|
|
|
|
// @has - '//*[@id="structfield.3"]' '3: i8'
|
2021-11-29 17:14:05 +01:00
|
|
|
// @has - '//*[@id="main-content"]/div[@class="docblock"]' 'not hello'
|
2021-07-25 14:57:45 +02:00
|
|
|
pub struct Foo(
|
|
|
|
/// hello
|
|
|
|
pub u32,
|
|
|
|
char,
|
|
|
|
pub char,
|
|
|
|
/// not hello
|
|
|
|
pub i8,
|
|
|
|
);
|
2021-07-25 21:18:11 +02:00
|
|
|
|
|
|
|
// @has foo/enum.Bar.html
|
2023-01-30 11:05:12 -07:00
|
|
|
// @has - '//pre[@class="rust item-decl"]' 'BarVariant(String),'
|
2021-10-19 22:48:53 -07:00
|
|
|
// @matches - '//*[@id="variant.BarVariant.fields"]/h4' '^Tuple Fields$'
|
2021-07-25 21:18:11 +02:00
|
|
|
// @has - '//*[@id="variant.BarVariant.field.0"]' '0: String'
|
|
|
|
// @has - '//*[@id="variant.BarVariant.fields"]//*[@class="docblock"]' 'Hello docs'
|
2021-10-19 22:48:53 -07:00
|
|
|
// @matches - '//*[@id="variant.FooVariant.fields"]/h4' '^Fields$'
|
2021-12-08 20:09:17 -05:00
|
|
|
// @has - '//*[@id="variant.BazVariant.fields"]//*[@class="docblock"]' 'dox'
|
|
|
|
// @has - '//*[@id="variant.OtherVariant.fields"]//*[@class="docblock"]' 'dox'
|
|
|
|
// @!matches - '//*[@id="variant.QuuxVariant.fields"]/h4' '^Tuple Fields$'
|
2021-07-25 21:18:11 +02:00
|
|
|
pub enum Bar {
|
|
|
|
BarVariant(
|
|
|
|
/// Hello docs
|
|
|
|
String
|
|
|
|
),
|
|
|
|
FooVariant {
|
|
|
|
/// hello
|
|
|
|
x: u32,
|
|
|
|
},
|
2021-12-08 20:09:17 -05:00
|
|
|
BazVariant(
|
|
|
|
String,
|
|
|
|
/// dox
|
|
|
|
u32,
|
|
|
|
),
|
|
|
|
OtherVariant(
|
|
|
|
/// dox
|
|
|
|
String,
|
|
|
|
u32,
|
|
|
|
),
|
|
|
|
QuuxVariant(String),
|
2021-07-25 21:18:11 +02:00
|
|
|
}
|