(&mut self)
| 261 | .entries |
| 262 | .iter() |
| 263 | .position(|entry| entry.name.as_deref() == Some(name))?; |
| 264 | self.remove_index(idx) |
| 265 | } |
| 266 | |
| 267 | pub fn remove_index(&mut self, index: usize) -> Option<PostProcessEffect> { |
| 268 | if index >= self.entries.len() { |
no outgoing calls
no test coverage detected