| 6 | }; |
| 7 | |
| 8 | pub trait UpdateFromLua<'lua>: FromLua<'lua> { |
| 9 | fn update_from_lua(&mut self, value: Value<'lua>, lua: &'lua Lua) -> Result<()>; |
| 10 | } |
| 11 | |
| 12 | macro_rules! impl_update_from_lua { |
| 13 | ($($ty:ty),*) => { |
nothing calls this directly
no outgoing calls
no test coverage detected