mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-05 11:00:57 +01:00
34 lines
958 B
Rust
34 lines
958 B
Rust
use mlua::prelude::*;
|
|
|
|
/**
|
|
Trait for any struct that can be turned into an [`LuaThread`]
|
|
and passed to the runtime, implemented for the following types:
|
|
|
|
- Lua threads ([`LuaThread`])
|
|
- Lua functions ([`LuaFunction`])
|
|
- Lua chunks ([`LuaChunk`])
|
|
*/
|
|
pub trait IntoLuaThread<'lua> {
|
|
/**
|
|
Converts the value into a Lua thread.
|
|
*/
|
|
fn into_lua_thread(self, lua: &'lua Lua) -> LuaResult<LuaThread<'lua>>;
|
|
}
|
|
|
|
impl<'lua> IntoLuaThread<'lua> for LuaThread<'lua> {
|
|
fn into_lua_thread(self, _: &'lua Lua) -> LuaResult<LuaThread<'lua>> {
|
|
Ok(self)
|
|
}
|
|
}
|
|
|
|
impl<'lua> IntoLuaThread<'lua> for LuaFunction<'lua> {
|
|
fn into_lua_thread(self, lua: &'lua Lua) -> LuaResult<LuaThread<'lua>> {
|
|
lua.create_thread(self)
|
|
}
|
|
}
|
|
|
|
impl<'lua> IntoLuaThread<'lua> for LuaChunk<'lua, '_> {
|
|
fn into_lua_thread(self, lua: &'lua Lua) -> LuaResult<LuaThread<'lua>> {
|
|
lua.create_thread(self.into_function()?)
|
|
}
|
|
}
|