pub struct HtmlMeta {
pub quirks_mode: QuirksMode,
pub doctype: Option<HtmlDoctype>,
}Expand description
HTML-specific document metadata. Set when the document came from
parse_html_*; None for XML documents.
Fields§
§quirks_mode: QuirksMode§doctype: Option<HtmlDoctype>Trait Implementations§
impl Eq for HtmlMeta
impl StructuralPartialEq for HtmlMeta
Auto Trait Implementations§
impl Freeze for HtmlMeta
impl RefUnwindSafe for HtmlMeta
impl Send for HtmlMeta
impl Sync for HtmlMeta
impl Unpin for HtmlMeta
impl UnsafeUnpin for HtmlMeta
impl UnwindSafe for HtmlMeta
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