Enum xml::BuilderError
[−]
[src]
pub enum BuilderError {
Parser(ParserError),
ImproperNesting,
NoElement,
}The structure returned for errors encountered while building an Element
Variants
Parser(ParserError)Errors encountered by the Parser
ImproperNestingNoElementNo element was found
Trait Implementations
impl PartialEq for BuilderError[src]
fn eq(&self, __arg_0: &BuilderError) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &BuilderError) -> bool
This method tests for !=.
impl Debug for BuilderError[src]
impl Clone for BuilderError[src]
fn clone(&self) -> BuilderError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Error for BuilderError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl Display for BuilderError[src]
impl From<ParserError> for BuilderError[src]
fn from(err: ParserError) -> BuilderError
Performs the conversion.