| 358 | #[derive(Clone)] |
| 359 | struct Cell { |
| 360 | fg: u32, |
| 361 | bg: u32, |
| 362 | ul_color: u32, |
| 363 | c: char, |
| 364 | style: CellStyle, |
| 365 | } |
| 366 | struct Grid { |
| 367 | width: usize, |
| 368 | height: usize, |
| 369 | data: Box<[Cell]>, |
nothing calls this directly
no outgoing calls
no test coverage detected