(&mut self, id: TableId<V>)
| 5193 | } |
| 5194 | |
| 5195 | fn get_mut<V: 'static>(&mut self, id: TableId<V>) -> Result<&mut V, ResourceTableError> { |
| 5196 | self.table.get_mut().get_mut(&Resource::from(id)) |
| 5197 | } |
| 5198 | |
| 5199 | pub fn add_child<T: 'static, U: 'static>( |
| 5200 | &mut self, |
no test coverage detected