aboutsummaryrefslogtreecommitdiff
path: root/src/dav/error.rs
blob: b04d2acf0febe672eac5207ea1293eab6528d6ca (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
use quick_xml::events::attributes::AttrError;

#[derive(Debug)]
pub enum ParsingError {
    MissingChild,
    NamespacePrefixAlreadyUsed,
    WrongToken,
    TagNotFound,
    Utf8Error(std::str::Utf8Error),
    QuickXml(quick_xml::Error), 
    Eof
}
impl From<AttrError> for ParsingError {
    fn from(value: AttrError) -> Self {
        Self::QuickXml(value.into())
    }
}
impl From<quick_xml::Error> for ParsingError {
    fn from(value: quick_xml::Error) -> Self {
        Self::QuickXml(value)
    }
}
impl From<std::str::Utf8Error> for ParsingError {
    fn from(value: std::str::Utf8Error) -> Self {
        Self::Utf8Error(value)
    }
}