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

pub struct Parser {
    pub format: ParseFormat,
}

Parsing API wrapper for libxml2

Fields

The ParseFormat for this parser

Methods

impl Parser
[src]

Create a parser for HTML documents

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

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

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]

Create a parser for XML documents

Auto Trait Implementations

impl Send for Parser

impl Sync for Parser

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more