pub struct MarkdownOptions {
pub title_detect: bool,
pub headings_detect: bool,
pub headings_anchors: bool,
pub enable_tables: bool,
pub enable_footnotes: bool,
pub enable_strikethrough: bool,
pub enable_tasklists: bool,
pub enable_headings_attributes: bool,
}
Fields§
§title_detect: bool
§headings_detect: bool
§headings_anchors: bool
§enable_tables: bool
§enable_footnotes: bool
§enable_strikethrough: bool
§enable_tasklists: bool
§enable_headings_attributes: bool
Trait Implementations§
Source§impl Clone for MarkdownOptions
impl Clone for MarkdownOptions
Source§fn clone(&self) -> MarkdownOptions
fn clone(&self) -> MarkdownOptions
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 MarkdownOptions
impl Debug for MarkdownOptions
Source§impl Default for MarkdownOptions
impl Default for MarkdownOptions
Source§impl<'de> Deserialize<'de> for MarkdownOptions
impl<'de> Deserialize<'de> for MarkdownOptions
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
Auto Trait Implementations§
impl Freeze for MarkdownOptions
impl RefUnwindSafe for MarkdownOptions
impl Send for MarkdownOptions
impl Sync for MarkdownOptions
impl Unpin for MarkdownOptions
impl UnwindSafe for MarkdownOptions
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