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
45
46
47
48
49
50
51
52
53
54
55
use nom;
use std::fmt;
use std::io;
use std::result;
use std::string;
pub type Result<T> = result::Result<T, Error>;
#[derive(Debug)]
pub enum Error {
IOError(io::Error),
NomError(String),
Custom(&'static str),
String(String),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::IOError(ref e) => e.fmt(f),
Error::NomError(ref e) => e.fmt(f),
Error::Custom(s) => f.write_str(s),
Error::String(ref s) => f.write_str(s.as_str()),
}
}
}
impl From<io::Error> for Error {
fn from(io_error: io::Error) -> Error {
Error::IOError(io_error)
}
}
impl<T: ::std::fmt::Debug> From<nom::Context<T>> for Error {
fn from(error: nom::Context<T>) -> Error {
Error::NomError(format!("{:?}", error))
}
}
impl From<String> for Error {
fn from(error: String) -> Error {
Error::String(error)
}
}
impl From<string::FromUtf8Error> for Error {
fn from(_: string::FromUtf8Error) -> Error {
Error::Custom("Error decoding invalid UTF-8")
}
}