()
| 31 | |
| 32 | impl App { |
| 33 | fn new() -> Self { |
| 34 | let theme_choice = ThemeChoice::TokyoNightStorm; |
| 35 | let style_choice = StyleChoice::Default; |
| 36 | |
| 37 | Self { |
| 38 | widget: plot_widget(style_choice), |
| 39 | theme_choice, |
| 40 | style_choice, |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | fn update(&mut self, message: Message) { |
| 45 | match message { |
nothing calls this directly
no test coverage detected