| 3 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 4 | #[repr(u8)] |
| 5 | pub enum Color { |
| 6 | Black = 0, |
| 7 | Blue = 1, |
| 8 | Green = 2, |
| 9 | Cyan = 3, |
| 10 | Red = 4, |
| 11 | Magenta = 5, |
| 12 | Brown = 6, |
| 13 | LightGray = 7, |
| 14 | DarkGray = 8, |
| 15 | LightBlue = 9, |
| 16 | LightGreen = 10, |
| 17 | LightCyan = 11, |
| 18 | LightRed = 12, |
| 19 | Pink = 13, |
| 20 | Yellow = 14, |
| 21 | White = 15, |
| 22 | } |
| 23 | |
| 24 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 25 | #[repr(transparent)] |
nothing calls this directly
no outgoing calls
no test coverage detected