summaryrefslogtreecommitdiff
path: root/src/table.rs
diff options
context:
space:
mode:
authorkyren <kerriganw@gmail.com>2017-09-30 01:27:18 -0400
committerkyren <kerriganw@gmail.com>2017-09-30 01:27:18 -0400
commitc5a4dfd7ebed829109a320ae803cefb8d5168fc7 (patch)
tree9f89ed34cf8c4062fe55070dc7fc1e05c47367f7 /src/table.rs
parent8324d9e648aaf776830b9185688efd157ce2d97d (diff)
downloadmlua-c5a4dfd7ebed829109a320ae803cefb8d5168fc7.zip
more reorganization, move simple type defines to types.rs module
Diffstat (limited to 'src/table.rs')
-rw-r--r--src/table.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/table.rs b/src/table.rs
index f82db87..d74f04d 100644
--- a/src/table.rs
+++ b/src/table.rs
@@ -1,9 +1,10 @@
use std::marker::PhantomData;
use ffi;
-use lua::{LuaRef, ToLua, FromLua, Integer};
-use util::*;
use error::Result;
+use util::*;
+use types::{Integer, LuaRef};
+use lua::{ToLua, FromLua};
/// Handle to an internal Lua table.
#[derive(Clone, Debug)]