pub struct BookStyle {
pub indents: IndentMap,
pub no_marker: NoMarkerSet,
}Expand description
Everything the extractor reads out of the book’s stylesheets.
One struct rather than a widening argument list: the extractor already threads the indent map through four call levels, and every future style the scan learns to read would otherwise add another parameter to each of them.
Fields§
§indents: IndentMap§no_marker: NoMarkerSetLists carrying one of these classes render without bullets or numbers.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BookStyle
impl RefUnwindSafe for BookStyle
impl Send for BookStyle
impl Sync for BookStyle
impl Unpin for BookStyle
impl UnsafeUnpin for BookStyle
impl UnwindSafe for BookStyle
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