use std::fmt;
use std::io;
use crate::raw;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Debug)]
pub enum Error {
Fst(raw::Error),
Io(io::Error),
}
impl From<io::Error> for Error {
#[inline]
fn from(err: io::Error) -> Error {
Error::Io(err)
}
}
impl From<raw::Error> for Error {
#[inline]
fn from(err: raw::Error) -> Error {
Error::Fst(err)
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
Error::Fst(_) => write!(f, "FST error"),
Error::Io(_) => write!(f, "I/O error"),
}
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match *self {
Error::Fst(ref err) => Some(err),
Error::Io(ref err) => Some(err),
}
}
}