Enum minidom::error::Error [] [src]

pub enum Error {
    IoError(Error),
    XmlWriterError(WriterError),
    XmlReaderError(ReaderError),
    EndOfDocument,
}

An enum representing the possible errors.

Variants

An io::Error.

An error in the xml-rs EventWriter.

An error in the xml-rs EventReader.

The end of the document has been reached unexpectedly.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<WriterError> for Error
[src]

Performs the conversion.

impl From<ReaderError> for Error
[src]

Performs the conversion.