From c88762e90f72ea4c5e7ac486f113b95239ce50cd Mon Sep 17 00:00:00 2001 From: kyren Date: Thu, 25 May 2017 12:01:12 -0400 Subject: [PATCH] Small doc update (secretly this is just to test submodules) --- src/lua.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lua.rs b/src/lua.rs index 810a065..7b6cf19 100644 --- a/src/lua.rs +++ b/src/lua.rs @@ -330,6 +330,8 @@ impl<'lua> LuaFunction<'lua> { } } +/// A LuaThread is Active before the coroutine function finishes, Dead after it finishes, and in +/// Error state if error has been called inside the coroutine. #[derive(Debug, Copy, Clone, Eq, PartialEq)] pub enum LuaThreadStatus { Dead,