Struct xml5ever::tokenizer::XmlTokenizerOpts [] [src]

pub struct XmlTokenizerOpts {
    pub exact_errors: bool,
    pub discard_bom: bool,
    pub profile: bool,
    pub initial_state: Option<XmlState>,
}

Copy of Tokenizer options, with an impl for Default.

Fields

Report all parse errors described in the spec, at some performance penalty? Default: false

Discard a U+FEFF BYTE ORDER MARK if we see one at the beginning of the stream? Default: true

Keep a record of how long we spent in each state? Printed when end() is called. Default: false

Initial state override. Only the test runner should use a non-None value!

Trait Implementations

impl Copy for XmlTokenizerOpts
[src]

impl Clone for XmlTokenizerOpts
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for XmlTokenizerOpts
[src]

Returns the "default value" for a type. Read more