Executes an operation on the backing `LcdRecorder`.
(mut self, op: F)
| 116 | |
| 117 | /// Executes an operation on the backing `LcdRecorder`. |
| 118 | pub(super) fn op<F>(mut self, op: F) -> Self |
| 119 | where |
| 120 | F: Fn(&mut BufferedLcd<LcdRecorder>), |
| 121 | { |
| 122 | op(&mut self.buffered); |
| 123 | self |
| 124 | } |
| 125 | |
| 126 | /// Records that the pixel `xy` should be `rgb` after all `op`s have been executed. |
| 127 | pub(super) fn expect_pixel(mut self, xy: LcdXY, rgb: RGB) -> Self { |
no outgoing calls
no test coverage detected