| 19 | |
| 20 | #[derive(Default)] |
| 21 | pub struct ToggleComponent { |
| 22 | command_tx: Option<UnboundedSender<Action>>, |
| 23 | config: Config, |
| 24 | list: ToggleList, |
| 25 | mode: Mode, |
| 26 | enabled: bool, |
| 27 | state: State, |
| 28 | input: Input, |
| 29 | throbber_state: throbber_widgets_tui::ThrobberState, |
| 30 | dir: PathBuf, |
| 31 | } |
| 32 | |
| 33 | #[derive(Debug, Clone, Default)] |
| 34 | struct ToggleList { |
nothing calls this directly
no outgoing calls
no test coverage detected