File tree 2 files changed +4
-2
lines changed
src/test/rustdoc-json/enums
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2
2
// @has - "$.index[*][?(@.name=='EnumStruct')].kind" \"enum\"
3
3
pub enum EnumStruct {
4
4
// @has - "$.index[*][?(@.name=='VariantS')].inner.variant_kind" \"struct\"
5
- // @has - "$.index[*][?(@.name=='x')]"
6
- // @has - "$.index[*][?(@.name=='y')]"
5
+ // @has - "$.index[*][?(@.name=='x')].kind" \"struct_field\ "
6
+ // @has - "$.index[*][?(@.name=='y')].kind" \"struct_field\ "
7
7
VariantS {
8
8
x : u32 ,
9
9
y : String ,
Original file line number Diff line number Diff line change 2
2
// @has - "$.index[*][?(@.name=='EnumTupleStruct')].kind" \"enum\"
3
3
pub enum EnumTupleStruct {
4
4
// @has - "$.index[*][?(@.name=='VariantA')].inner.variant_kind" \"tuple\"
5
+ // @has - "$.index[*][?(@.name=='0')].kind" \"struct_field\"
6
+ // @has - "$.index[*][?(@.name=='1')].kind" \"struct_field\"
5
7
VariantA ( u32 , String ) ,
6
8
}
You can’t perform that action at this time.
0 commit comments