Enum xmpp_parsers::Error
source · pub enum Error {
ParseError(&'static str),
TypeMismatch(&'static str, &'static str, Element),
Base64Error(DecodeError),
ParseIntError(ParseIntError),
ParseStringError(ParseError),
ParseAddrError(AddrParseError),
JidParseError(Error),
ChronoParseError(ParseError),
}
Expand description
Contains one of the potential errors triggered while parsing an Element into a specialised struct.
Variants§
ParseError(&'static str)
The usual error when parsing something.
TODO: use a structured error so the user can report it better, instead of a freeform string.
TypeMismatch(&'static str, &'static str, Element)
Element local-name/namespace mismatch
Returns the original element unaltered, as well as the expected ns and local-name.
Base64Error(DecodeError)
Generated when some base64 content fails to decode, usually due to extra characters.
ParseIntError(ParseIntError)
Generated when text which should be an integer fails to parse.
ParseStringError(ParseError)
Generated when text which should be a string fails to parse.
ParseAddrError(AddrParseError)
Generated when text which should be an IP address (IPv4 or IPv6) fails to parse.
JidParseError(Error)
Generated when text which should be a JID fails to parse.
ChronoParseError(ParseError)
Generated when text which should be a DateTime fails to parse.