pub struct ContentProcessor {}Expand description
Component responsible for HTML cleaning and Markdown conversion.
ContentProcessor handles all aspects of content processing including HTML parsing,
content extraction, cleaning unwanted elements, and converting to Markdown format.
This component reuses the original functions from MarkdownHarvester to maintain
compatibility and behavior.
Implementations§
Trait Implementations§
Source§impl Clone for ContentProcessor
impl Clone for ContentProcessor
Source§fn clone(&self) -> ContentProcessor
fn clone(&self) -> ContentProcessor
Returns a duplicate 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 Default for ContentProcessor
impl Default for ContentProcessor
Source§fn default() -> ContentProcessor
fn default() -> ContentProcessor
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContentProcessor
impl RefUnwindSafe for ContentProcessor
impl Send for ContentProcessor
impl Sync for ContentProcessor
impl Unpin for ContentProcessor
impl UnwindSafe for ContentProcessor
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