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
//! Error handling with the `Result` type.

use std::{error, fmt, io, result};

/// Error type used for all errors produced by this crate.
#[derive(Debug)]
pub enum Error {
    /// Error performing an I/O operation.
    Io(io::Error),
    /// Error during sparse file parsing.
    Parse(String),
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Error::Io(err) => err.fmt(f),
            Error::Parse(s) => f.write_str(s),
        }
    }
}

impl error::Error for Error {
    fn description(&self) -> &str {
        match self {
            Error::Io(err) => err.description(),
            Error::Parse(s) => &s,
        }
    }
}

impl From<io::Error> for Error {
    fn from(err: io::Error) -> Self {
        Error::Io(err)
    }
}

/// Result type used for error handling in this crate.
pub type Result<T> = result::Result<T, Error>;