(&mut self, value: Value<'lua>, lua: &'lua Lua)
| 26 | |
| 27 | impl<'lua, T: FromLua<'lua>> UpdateFromLua<'lua> for Vec<T> { |
| 28 | fn update_from_lua(&mut self, value: Value<'lua>, lua: &'lua Lua) -> Result<()> { |
| 29 | *self = FromLua::from_lua(value, lua)?; |
| 30 | Ok(()) |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | impl<'lua, T: FromLua<'lua>> UpdateFromLua<'lua> for Option<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected