[][src]Struct libxml::parser::Parser

pub struct Parser {
    pub format: ParseFormat,
}

Parsing API wrapper for libxml2

Fields

format: ParseFormat

The ParseFormat for this parser

Methods

impl Parser[src]

pub fn default_html() -> Self[src]

Create a parser for HTML documents

pub fn parse_file(&self, filename: &str) -> Result<Document, XmlParseError>[src]

Parses the XML/HTML file filename to generate a new Document

pub fn parse_string(
    &self,
    input_string: &str
) -> Result<Document, XmlParseError>
[src]

Parses the XML/HTML string input_string to generate a new Document

pub fn is_well_formed_html(&self, input_string: &str) -> bool[src]

Checks a string for well-formedness IMPORTANT: This function is currently implemented in a HACKY way, to ignore invalid errors for HTML5 elements (such as ) this means you should NEVER USE IT WHILE THREADING, it is CERTAIN TO BREAK

Help is welcome in implementing it correctly.

Trait Implementations

impl Default for Parser[src]

fn default() -> Self[src]

Create a parser for XML documents

Auto Trait Implementations

impl Send for Parser

impl Sync for Parser

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.