pub struct Summary {
pub title: Option<String>,
pub prefix_chapters: Vec<SummaryItem>,
pub numbered_chapters: Vec<SummaryItem>,
pub suffix_chapters: Vec<SummaryItem>,
}
Expand description
The parsed SUMMARY.md
, specifying how the book should be laid out.
Fields§
§title: Option<String>
An optional title for the SUMMARY.md
, currently just ignored.
prefix_chapters: Vec<SummaryItem>
Chapters before the main text (e.g. an introduction).
numbered_chapters: Vec<SummaryItem>
The main numbered chapters of the book, broken into one or more possibly named parts.
suffix_chapters: Vec<SummaryItem>
Items which come after the main document (e.g. a conclusion).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Summary
impl<'de> Deserialize<'de> for Summary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Summary
Auto Trait Implementations§
impl Freeze for Summary
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnwindSafe for Summary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more