xsd_parser

Type Alias ParserError

Source
pub type ParserError<E> = Error<E>;
Expand description

Type alias for parser::Error.

Aliased Type§

enum ParserError<E> {
    IoError(Error),
    XmlError(Error),
    UrlParseError(ParseError),
    UnableToResolve(Url),
    Resolver(E),
    MissingTargetNamespace,
    MissingTargetNamespacePrefix,
}

Variants§

§

IoError(Error)

An IO error occurred.

§

XmlError(Error)

Error while interpreting the XML for the schema.

§

UrlParseError(ParseError)

Error while paring the URL.

§

UnableToResolve(Url)

Unable to resolve the requested resource.

§

Resolver(E)

Error while resolving the requested resource.

§

MissingTargetNamespace

Schema is missing a target namespace!

§

MissingTargetNamespacePrefix

Schema is missing a namespace prefix for the target namespace!