pub struct HtmlParseResult {
pub dom_tree: DomTree,
pub style_blocks: Vec<StyleBlock>,
pub inline_styles: Vec<InlineStyle>,
}Fields§
§dom_tree: DomTree§style_blocks: Vec<StyleBlock>§inline_styles: Vec<InlineStyle>Trait Implementations§
Source§impl Clone for HtmlParseResult
impl Clone for HtmlParseResult
Source§fn clone(&self) -> HtmlParseResult
fn clone(&self) -> HtmlParseResult
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 moreAuto Trait Implementations§
impl Freeze for HtmlParseResult
impl RefUnwindSafe for HtmlParseResult
impl Send for HtmlParseResult
impl Sync for HtmlParseResult
impl Unpin for HtmlParseResult
impl UnwindSafe for HtmlParseResult
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