pub struct PulldownMarkdownParser;Expand description
Markdown parser implementation using the pulldown-cmark library
Implementations§
Trait Implementations§
Source§impl Clone for PulldownMarkdownParser
impl Clone for PulldownMarkdownParser
Source§fn clone(&self) -> PulldownMarkdownParser
fn clone(&self) -> PulldownMarkdownParser
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PulldownMarkdownParser
impl Debug for PulldownMarkdownParser
Source§impl Default for PulldownMarkdownParser
impl Default for PulldownMarkdownParser
Source§fn default() -> PulldownMarkdownParser
fn default() -> PulldownMarkdownParser
Returns the “default value” for a type. Read more
Source§impl MarkdownParser for PulldownMarkdownParser
impl MarkdownParser for PulldownMarkdownParser
Source§fn parse_sections(&self, content: &str) -> Result<Vec<Section>, ParserError>
fn parse_sections(&self, content: &str) -> Result<Vec<Section>, ParserError>
Parse markdown content into sections Read more
Auto Trait Implementations§
impl Freeze for PulldownMarkdownParser
impl RefUnwindSafe for PulldownMarkdownParser
impl Send for PulldownMarkdownParser
impl Sync for PulldownMarkdownParser
impl Unpin for PulldownMarkdownParser
impl UnsafeUnpin for PulldownMarkdownParser
impl UnwindSafe for PulldownMarkdownParser
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