(&mut self)
| 62 | } |
| 63 | |
| 64 | fn next(&mut self) { |
| 65 | if self.last.elapsed().as_millis() < 25 { |
| 66 | return; |
| 67 | } |
| 68 | |
| 69 | self.last = std::time::Instant::now(); |
| 70 | self.pitch += 1; |
| 71 | if self.pitch >= 157 { |
| 72 | self.pitch = 0; |
| 73 | } |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | impl PlottersChart for MyChart { |
no outgoing calls
no test coverage detected