diff options
author | kyren <kerriganw@gmail.com> | 2018-08-05 09:51:39 -0400 |
---|---|---|
committer | kyren <kerriganw@gmail.com> | 2018-08-05 09:51:39 -0400 |
commit | 2e1bdb64c0ff9855f8769a1673dd5c2c7cd2c872 (patch) | |
tree | 3d56f722a35ae918edb88e94f9548ddd3174a2ee /src/lib.rs | |
parent | e6688e1db293e24dafc65ca28efd2fca59799941 (diff) | |
download | mlua-2e1bdb64c0ff9855f8769a1673dd5c2c7cd2c872.zip |
format with up-to-date rustfmt
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -44,36 +44,36 @@ extern crate failure; extern crate libc; -mod ffi; mod error; +mod ffi; #[macro_use] mod macros; -mod util; -mod value; -mod types; -mod lua; mod conversion; +mod function; +mod lua; mod multi; +mod scope; mod string; mod table; -mod function; mod thread; +mod types; mod userdata; -mod scope; +mod util; +mod value; #[cfg(test)] mod tests; pub use error::{Error, ExternalError, ExternalResult, Result}; -pub use types::{Integer, LightUserData, Number, RegistryKey}; +pub use function::Function; +pub use lua::Lua; pub use multi::Variadic; +pub use scope::Scope; pub use string::String; pub use table::{Table, TablePairs, TableSequence}; -pub use function::Function; pub use thread::{Thread, ThreadStatus}; +pub use types::{Integer, LightUserData, Number, RegistryKey}; pub use userdata::{AnyUserData, MetaMethod, UserData, UserDataMethods}; pub use value::{FromLua, FromLuaMulti, MultiValue, Nil, ToLua, ToLuaMulti, Value}; -pub use lua::Lua; -pub use scope::Scope; pub mod prelude; |