Struct cdoc::config::HtmlFormat
source · pub struct HtmlFormat {}
Trait Implementations§
source§impl Clone for HtmlFormat
impl Clone for HtmlFormat
source§fn clone(&self) -> HtmlFormat
fn clone(&self) -> HtmlFormat
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HtmlFormat
impl Debug for HtmlFormat
source§impl<'de> Deserialize<'de> for HtmlFormat
impl<'de> Deserialize<'de> for HtmlFormat
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
source§impl Format for HtmlFormat
impl Format for HtmlFormat
source§fn template_prefix(&self) -> &str
fn template_prefix(&self) -> &str
Template format name. Useful if templates are reused across formats as is the case for
notebooks which use markdown.
source§fn name(&self) -> &str
fn name(&self) -> &str
Format name that is used in status messages, build output and in the configuration file.
source§fn no_parse(&self) -> bool
fn no_parse(&self) -> bool
Return true if the format should not be parsed. This may be removed in the future and is
currently only used for the info format which exports all parsed contents in a project.
source§fn renderer(&self) -> Box<dyn DocumentRenderer>
fn renderer(&self) -> Box<dyn DocumentRenderer>
Return a renderer instance. Currently does not allow for configuration.
source§fn include_resources(&self) -> bool
fn include_resources(&self) -> bool
Determines whether non-source files should be copied to
fn use_layout(&self) -> bool
Auto Trait Implementations§
impl RefUnwindSafe for HtmlFormat
impl Send for HtmlFormat
impl Sync for HtmlFormat
impl Unpin for HtmlFormat
impl UnwindSafe for HtmlFormat
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