()
| 30 | |
| 31 | impl App { |
| 32 | fn new() -> Self { |
| 33 | Self { |
| 34 | plot_a: marker_plot(PlotRenderStrategy::Shader), |
| 35 | plot_b: marker_plot(PlotRenderStrategy::Canvas), |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | fn update(&mut self, message: Message) { |
| 40 | match message { |
nothing calls this directly
no test coverage detected