| 27 | } |
| 28 | |
| 29 | struct App { |
| 30 | series_id: ShapeId, |
| 31 | widget: PlotWidget, |
| 32 | frames: &'static [u8], |
| 33 | frame_idx: usize, |
| 34 | frame_count: usize, |
| 35 | last_tick: Option<Instant>, |
| 36 | accumulator: Duration, |
| 37 | frame_duration: Duration, |
| 38 | } |
| 39 | |
| 40 | impl App { |
| 41 | fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected