From 3c412ea6b05fbc0c399cf95e1658bfd50492e722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?cel=20=F0=9F=8C=B8?= Date: Tue, 25 Feb 2025 18:52:14 +0000 Subject: [PATCH] implement Error for jid crate error types --- jid/src/lib.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/jid/src/lib.rs b/jid/src/lib.rs index 52b7173..09b0a7f 100644 --- a/jid/src/lib.rs +++ b/jid/src/lib.rs @@ -62,11 +62,23 @@ impl sqlx::Encode<'_, Sqlite> for JID { } } +#[derive(Debug)] pub enum JIDError { NoResourcePart, ParseError(ParseError), } +impl Display for JIDError { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + match self { + JIDError::NoResourcePart => f.write_str("resourcepart missing"), + JIDError::ParseError(parse_error) => parse_error.fmt(f), + } + } +} + +impl Error for JIDError {} + #[derive(Debug)] pub enum ParseError { Empty,