| 47 | |
| 48 | #[derive(Debug, Clone, Default)] |
| 49 | struct ToggleListItem { |
| 50 | name: String, |
| 51 | source: Source, |
| 52 | project_id: String, |
| 53 | version: String, |
| 54 | game_version: Option<String>, |
| 55 | category: Option<String>, |
| 56 | version_type: String, |
| 57 | enabled: bool, |
| 58 | path: String, |
| 59 | } |
| 60 | |
| 61 | const SELECTED_STYLE: Style = Style::new().bg(SLATE.c800).add_modifier(Modifier::BOLD); |
| 62 |
nothing calls this directly
no outgoing calls
no test coverage detected