pub struct HtmlExporter {
pub include_style: bool,
pub generate_index: bool,
}Expand description
HTML exporter.
Fields§
§include_style: boolInclude CSS styling.
generate_index: boolGenerate index page.
Implementations§
Source§impl HtmlExporter
impl HtmlExporter
Sourcepub fn without_style(self) -> Self
pub fn without_style(self) -> Self
Disable inline CSS styling.
Sourcepub fn without_index(self) -> Self
pub fn without_index(self) -> Self
Disable index page generation.
Trait Implementations§
Source§impl Debug for HtmlExporter
impl Debug for HtmlExporter
Source§impl Default for HtmlExporter
impl Default for HtmlExporter
Source§fn default() -> HtmlExporter
fn default() -> HtmlExporter
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HtmlExporter
impl RefUnwindSafe for HtmlExporter
impl Send for HtmlExporter
impl Sync for HtmlExporter
impl Unpin for HtmlExporter
impl UnwindSafe for HtmlExporter
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