Derive Clone and Debug for Chapter and Book
This commit is contained in:
parent
c69161cef8
commit
d664618e9f
|
@ -4,6 +4,7 @@ use book::chapter::Chapter;
|
||||||
|
|
||||||
/// The `Book` struct contains the metadata and chapters for one language of the book.
|
/// The `Book` struct contains the metadata and chapters for one language of the book.
|
||||||
/// Multiple `Book` structs are combined in the `MDBook` struct to support multi-language books.
|
/// Multiple `Book` structs are combined in the `MDBook` struct to support multi-language books.
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
pub struct Book {
|
pub struct Book {
|
||||||
metadata: BookMetadata,
|
metadata: BookMetadata,
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@ use std::path;
|
||||||
|
|
||||||
/// The Chapter struct holds the title of the chapter as written in the SUMMARY.md file,
|
/// The Chapter struct holds the title of the chapter as written in the SUMMARY.md file,
|
||||||
/// the location of the markdown file containing the content and eventually sub-chapters
|
/// the location of the markdown file containing the content and eventually sub-chapters
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
pub struct Chapter {
|
pub struct Chapter {
|
||||||
title: String,
|
title: String,
|
||||||
file: path::PathBuf,
|
file: path::PathBuf,
|
||||||
|
|
Loading…
Reference in New Issue