Enum xml::BuilderError [] [src]

pub enum BuilderError {
    Parser(ParserError),
    ImproperNesting,
    NoElement,
}

The structure returned for errors encountered while building an Element

Variants

Errors encountered by the Parser

Elements were improperly nested, e.g.

No element was found

Trait Implementations

impl PartialEq for BuilderError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for BuilderError
[src]

Formats the value using the given formatter.

impl Clone for BuilderError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for BuilderError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Display for BuilderError
[src]

Formats the value using the given formatter. Read more

impl From<ParserError> for BuilderError
[src]

Performs the conversion.