@@ -9,7 +9,7 @@ use std::path::PathBuf;
9
9
use serde:: { Deserialize , Serialize } ;
10
10
11
11
/// rustdoc format-version.
12
- pub const FORMAT_VERSION : u32 = 20 ;
12
+ pub const FORMAT_VERSION : u32 = 21 ;
13
13
14
14
/// A `Crate` is the root of the emitted JSON blob. It contains all type/documentation information
15
15
/// about the language items in the local crate, as well as info about external items to allow
@@ -289,13 +289,39 @@ pub struct Union {
289
289
290
290
#[ derive( Clone , Debug , PartialEq , Eq , Hash , Serialize , Deserialize ) ]
291
291
pub struct Struct {
292
- pub struct_type : StructType ,
292
+ pub kind : StructKind ,
293
293
pub generics : Generics ,
294
- pub fields_stripped : bool ,
295
- pub fields : Vec < Id > ,
296
294
pub impls : Vec < Id > ,
297
295
}
298
296
297
+ #[ derive( Clone , Debug , PartialEq , Eq , Hash , Serialize , Deserialize ) ]
298
+ #[ serde( rename_all = "snake_case" ) ]
299
+ pub enum StructKind {
300
+ /// A struct with no fields and no parentheses.
301
+ ///
302
+ /// ```rust
303
+ /// pub struct Unit;
304
+ /// ```
305
+ Unit ,
306
+ /// A struct with unnamed fields.
307
+ ///
308
+ /// ```rust
309
+ /// pub struct TupleStruct(i32);
310
+ /// pub struct EmptyTupleStruct();
311
+ /// ```
312
+ ///
313
+ /// All [`Id`]'s will point to [`ItemEnum::StructField`]. Private and
314
+ /// `#[doc(hidden)]` fields will be given as `None`
315
+ Tuple ( Vec < Option < Id > > ) ,
316
+ /// A struct with nammed fields.
317
+ ///
318
+ /// ```rust
319
+ /// pub struct PlainStruct { x: i32 }
320
+ /// pub struct EmptyPlainStruct {}
321
+ /// ```
322
+ Plain { fields : Vec < Id > , fields_stripped : bool } ,
323
+ }
324
+
299
325
#[ derive( Clone , Debug , PartialEq , Eq , Hash , Serialize , Deserialize ) ]
300
326
pub struct Enum {
301
327
pub generics : Generics ,
@@ -357,14 +383,6 @@ pub struct Discriminant {
357
383
pub value : String ,
358
384
}
359
385
360
- #[ derive( Clone , Debug , PartialEq , Eq , Hash , Serialize , Deserialize ) ]
361
- #[ serde( rename_all = "snake_case" ) ]
362
- pub enum StructType {
363
- Plain ,
364
- Tuple ,
365
- Unit ,
366
- }
367
-
368
386
#[ derive( Clone , Debug , PartialEq , Eq , Hash , Serialize , Deserialize ) ]
369
387
pub struct Header {
370
388
#[ serde( rename = "const" ) ]
0 commit comments