Skip to content

Commit d9ce98d

Browse files
authored
Merge pull request #1572 from joshrotenberg/revert-c1b2bec7d7a56909f695f103d316453dab68798e
Revert "book: use non_exhaustive attribute for struct Book"
2 parents b899c48 + b59aab5 commit d9ce98d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/book/book.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ fn create_missing(src_dir: &Path, summary: &Summary) -> Result<()> {
7474
/// [`iter()`]: #method.iter
7575
/// [`for_each_mut()`]: #method.for_each_mut
7676
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
77-
#[non_exhaustive]
7877
pub struct Book {
7978
/// The sections in this book.
8079
pub sections: Vec<BookItem>,
80+
__non_exhaustive: (),
8181
}
8282

8383
impl Book {
@@ -225,7 +225,10 @@ pub(crate) fn load_book_from_disk<P: AsRef<Path>>(summary: &Summary, src_dir: P)
225225
chapters.push(chapter);
226226
}
227227

228-
Ok(Book { sections: chapters })
228+
Ok(Book {
229+
sections: chapters,
230+
__non_exhaustive: (),
231+
})
229232
}
230233

231234
fn load_summary_item<P: AsRef<Path> + Clone>(

0 commit comments

Comments
 (0)