| 19 | #[allow(clippy::struct_excessive_bools)] |
| 20 | #[derive(Debug)] |
| 21 | struct CurrentDevState { |
| 22 | backend_status: bool, |
| 23 | backend_compiled: bool, |
| 24 | backend_compiling: bool, |
| 25 | backend_restarting: bool, |
| 26 | compiler_messages: Vec<CompilerMessage>, |
| 27 | vite_status: bool, |
| 28 | features: Vec<String>, |
| 29 | migrations_pending: (bool, Vec<CreateRustAppMigration>), |
| 30 | } |
| 31 | |
| 32 | struct AppState { |
| 33 | #[allow(dead_code)] |
nothing calls this directly
no outgoing calls
no test coverage detected