luz/src/error.rs

45 lines
908 B
Rust
Raw Normal View History

2023-07-04 21:27:15 +01:00
use std::str::Utf8Error;
use rsasl::mechname::MechanismNameError;
2023-06-19 19:23:54 +01:00
#[derive(Debug)]
pub enum JabberError {
2023-07-04 21:27:15 +01:00
Connection,
2023-06-19 19:23:54 +01:00
BadStream,
StartTlsUnavailable,
TlsNegotiation,
2023-07-04 21:27:15 +01:00
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)
}
2023-06-19 19:23:54 +01:00
}