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
56
use std::fmt;
use std::error::Error as StdError;
use std::result::Result as StdResult;

use serde;
use rlua::Error as LuaError;


#[derive(Debug)]
pub struct Error(LuaError);

pub type Result<T> = StdResult<T, Error>;

impl From<LuaError> for Error {
    fn from(err: LuaError) -> Error {
        Error(err)
    }
}

impl From<Error> for LuaError {
    fn from(err: Error) -> LuaError {
        err.0
    }
}

impl fmt::Display for Error {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        self.0.fmt(fmt)
    }
}

impl StdError for Error {
    fn description(&self) -> &'static str {
        "Failed to serialize to Lua value"
    }
}

impl serde::ser::Error for Error {
    fn custom<T: fmt::Display>(msg: T) -> Self {
        Error(LuaError::ToLuaConversionError {
            from: "serialize",
            to: "value",
            message: Some(format!("{}", msg))
        })
    }
}

impl serde::de::Error for Error {
    fn custom<T: fmt::Display>(msg: T) -> Self {
        Error(LuaError::FromLuaConversionError {
            from: "value",
            to: "deserialize",
            message: Some(format!("{}", msg))
        })
    }
}