| 143 | } |
| 144 | |
| 145 | pub struct PieChart<'a, C, M, D> |
| 146 | where |
| 147 | C: CanvasContext<Pattern>, |
| 148 | M: fmt::Display, |
| 149 | D: fmt::Display + Copy, |
| 150 | { |
| 151 | props: RefCell<PieChartProperties>, |
| 152 | base: BaseChart<'a, C, PieEntity<D>, M, D, PieChartOptions<'a>>, |
| 153 | } |
| 154 | |
| 155 | impl<'a, C, M, D> PieChart<'a, C, M, D> |
| 156 | where |
nothing calls this directly
no outgoing calls
no test coverage detected