pub type Result<T> = Result<T, LuaError>;
Result from a Lua call
enum Result<T> { Ok(T), Err(LuaError), }
Contains the success value
Contains the error value