diff options
author | cel 🌸 <cel@blos.sm> | 2023-08-02 00:56:38 +0100 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-08-02 00:56:38 +0100 |
commit | cd7bb95c0a31d187bfe25bad15043f0b33b111cf (patch) | |
tree | c5be0c651198abf736f8867a36906f9345f3a0ac /src/error.rs | |
parent | 322b2a3b46348ec1c5acbc538de93310c9030b96 (diff) | |
download | luz-cd7bb95c0a31d187bfe25bad15043f0b33b111cf.tar.gz luz-cd7bb95c0a31d187bfe25bad15043f0b33b111cf.tar.bz2 luz-cd7bb95c0a31d187bfe25bad15043f0b33b111cf.zip |
implement resource binding
Diffstat (limited to '')
-rw-r--r-- | src/error.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs index 17bfbef..a912840 100644 --- a/src/error.rs +++ b/src/error.rs @@ -17,8 +17,14 @@ pub enum JabberError { Utf8Decode, NoFeatures, UnknownNamespace, + UnknownAttribute, + NoID, + NoType, + IDMismatch, + BindError, ParseError, UnexpectedEnd, + UnexpectedElement, XML(quick_xml::Error), SASL(SASLError), Element(ElementError<'static>), |