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.
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn cause(&self) -> Option<&dyn StdError>
fn cause(&self) -> Option<&dyn StdError>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<AddrParseError> for Error
impl From<AddrParseError> for Error
source§fn from(err: AddrParseError) -> Error
fn from(err: AddrParseError) -> Error
source§impl From<DecodeError> for Error
impl From<DecodeError> for Error
source§fn from(err: DecodeError) -> Error
fn from(err: DecodeError) -> Error
source§impl From<Infallible> for Error
impl From<Infallible> for Error
source§fn from(err: ParseError) -> Error
fn from(err: ParseError) -> Error
source§impl From<ParseError> for Error
impl From<ParseError> for Error
source§fn from(err: ParseError) -> Error
fn from(err: ParseError) -> Error
source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
source§fn from(err: ParseIntError) -> Error
fn from(err: ParseIntError) -> Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
CompactString
. Read more