Skip to content

Commit 336129c

Browse files
committed
1 parent 338e734 commit 336129c

File tree

5 files changed

+39
-17
lines changed

5 files changed

+39
-17
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<a name="v0.17.0"></a>
2+
# [v0.17.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.17.0) - 2022-09-08
3+
- Format Version: 21
4+
- Upstream Commit: [`1c8de173238a02abeb5642c25c3cef1eea52ac18`](https://github.com/rust-lang/rust/commit/1c8de173238a02abeb5642c25c3cef1eea52ac18)
5+
- Diff: [v0.17.0...v0.16.0](https://github.com/aDotInTheVoid/rustdoc-types/compare/v0.16.0...v0.17.0)
6+
17
<a name="v0.16.0"></a>
28
# [v0.16.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.16.0) - 2022-09-07
39
- Format Version: 20

COMMIT.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
065e0b9c9cf3d03f286c5d0b98fbae7185e41b75
1+
1c8de173238a02abeb5642c25c3cef1eea52ac18

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustdoc-types"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Nixon Enraght-Moony <nixon.emoony@gmail.com>", "The Rust Project Developers"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

src/lib.rs

+30-12
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::path::PathBuf;
99
use serde::{Deserialize, Serialize};
1010

1111
/// rustdoc format-version.
12-
pub const FORMAT_VERSION: u32 = 20;
12+
pub const FORMAT_VERSION: u32 = 21;
1313

1414
/// A `Crate` is the root of the emitted JSON blob. It contains all type/documentation information
1515
/// about the language items in the local crate, as well as info about external items to allow
@@ -289,13 +289,39 @@ pub struct Union {
289289

290290
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
291291
pub struct Struct {
292-
pub struct_type: StructType,
292+
pub kind: StructKind,
293293
pub generics: Generics,
294-
pub fields_stripped: bool,
295-
pub fields: Vec<Id>,
296294
pub impls: Vec<Id>,
297295
}
298296

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+
299325
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
300326
pub struct Enum {
301327
pub generics: Generics,
@@ -357,14 +383,6 @@ pub struct Discriminant {
357383
pub value: String,
358384
}
359385

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-
368386
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
369387
pub struct Header {
370388
#[serde(rename = "const")]

src/tests.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ use super::*;
33
#[test]
44
fn test_struct_info_roundtrip() {
55
let s = ItemEnum::Struct(Struct {
6-
struct_type: StructType::Plain,
76
generics: Generics { params: vec![], where_predicates: vec![] },
8-
fields_stripped: false,
9-
fields: vec![],
7+
kind: StructKind::Plain { fields: vec![], fields_stripped: false },
108
impls: vec![],
119
});
1210

0 commit comments

Comments
 (0)