blob: 20ebc3eda0ab9389c75d0eb20caff91444aeae57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
use std::str::Utf8Error;
use rsasl::mechname::MechanismNameError;
#[derive(Debug)]
pub enum JabberError {
Connection,
BadStream,
StartTlsUnavailable,
TlsNegotiation,
Utf8Decode,
XML(quick_xml::Error),
SASL(SASLError),
}
#[derive(Debug)]
pub enum SASLError {
SASL(rsasl::prelude::SASLError),
MechanismName(MechanismNameError),
}
impl From<rsasl::prelude::SASLError> for JabberError {
fn from(e: rsasl::prelude::SASLError) -> Self {
Self::SASL(SASLError::SASL(e))
}
}
impl From<MechanismNameError> for JabberError {
fn from(value: MechanismNameError) -> Self {
Self::SASL(SASLError::MechanismName(value))
}
}
impl From<Utf8Error> for JabberError {
fn from(e: Utf8Error) -> Self {
Self::Utf8Decode
}
}
impl From<quick_xml::Error> for JabberError {
fn from(e: quick_xml::Error) -> Self {
Self::XML(e)
}
}
|