| 107 | } |
| 108 | |
| 109 | pub struct BarChart<'a, C, M, D> |
| 110 | where |
| 111 | C: CanvasContext<Pattern>, |
| 112 | M: fmt::Display, |
| 113 | D: fmt::Display + Copy, |
| 114 | { |
| 115 | props: RefCell<BarChartProperties>, |
| 116 | base: BaseChart<'a, C, BarEntity<D>, M, D, BarChartOptions<'a>>, |
| 117 | } |
| 118 | |
| 119 | impl<'a, C, M, D> BarChart<'a, C, M, D> |
| 120 | where |
nothing calls this directly
no outgoing calls
no test coverage detected