pub struct ExtractedNode {
pub outer_html: String,
}Expand description
A single node extracted from an HTML document.
Kept separate from Element to allow future extractors (XPath, LLM)
to return richer data without touching the CSS-specific types.
Fields§
§outer_html: StringImplementations§
Auto Trait Implementations§
impl Freeze for ExtractedNode
impl RefUnwindSafe for ExtractedNode
impl Send for ExtractedNode
impl Sync for ExtractedNode
impl Unpin for ExtractedNode
impl UnsafeUnpin for ExtractedNode
impl UnwindSafe for ExtractedNode
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