Enum xmpp_parsers::Error
source · pub enum Error {
ParseError(&'static str),
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.
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>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<AddrParseError> for Error
impl From<AddrParseError> for Error
source§fn from(err: AddrParseError) -> Error
fn from(err: AddrParseError) -> Error
Converts to this type from the input type.
source§impl From<DecodeError> for Error
impl From<DecodeError> for Error
source§fn from(err: DecodeError) -> Error
fn from(err: DecodeError) -> Error
Converts to this type from the input type.
source§impl From<Infallible> for Error
impl From<Infallible> for Error
source§fn from(err: ParseError) -> Error
fn from(err: ParseError) -> Error
Converts to this type from the input type.
source§impl From<ParseError> for Error
impl From<ParseError> for Error
source§fn from(err: ParseError) -> Error
fn from(err: ParseError) -> Error
Converts to this type from the input type.
source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
source§fn from(err: ParseIntError) -> Error
fn from(err: ParseIntError) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more