| 109 | |
| 110 | #[derive(Default, Debug, Clone)] |
| 111 | pub struct ChartChannel<E> |
| 112 | where |
| 113 | E: Entity, |
| 114 | { |
| 115 | name: String, |
| 116 | color: Color, |
| 117 | highlight: Color, |
| 118 | state: Visibility, |
| 119 | entities: Vec<E>, |
| 120 | } |
| 121 | |
| 122 | impl<E> ChartChannel<E> |
| 123 | where |
nothing calls this directly
no outgoing calls
no test coverage detected