Enum xml::BuilderError [-] [+] [src]

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

The structure returned for errors encountered while building an Element

Variants

Parser

Errors encountered by the Parser

ImproperNesting

Elements were improperly nested, e.g.

NoElement

No element was found

Trait Implementations

impl Error for BuilderError

fn description(&self) -> &str

fn cause(&self) -> Option<&Error>

impl Display for BuilderError

fn fmt(&self, f: &mut Formatter) -> Result

impl From<ParserError> for BuilderError

fn from(err: ParserError) -> BuilderError

Derived Implementations

impl Clone for BuilderError

fn clone(&self) -> BuilderError

fn clone_from(&mut self, source: &Self)

impl Debug for BuilderError

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl PartialEq for BuilderError

fn eq(&self, __arg_0: &BuilderError) -> bool

fn ne(&self, __arg_0: &BuilderError) -> bool