(&mut self, output: &Output)
| 215 | } |
| 216 | |
| 217 | pub fn remove_output(&mut self, output: &Output) { |
| 218 | self.outputs.retain(|o| o != output); |
| 219 | } |
| 220 | |
| 221 | pub fn output_geometry(&self, o: &Output) -> Option<Rectangle<i32, Logical>> { |
| 222 | if !self.outputs.contains(o) { |
nothing calls this directly
no outgoing calls
no test coverage detected