MCPcopy Create free account
hub / github.com/Wulf/create-rust-app / CurrentDevState

Class CurrentDevState

crates/create-rust-app/src/dev/dev_server.rs:21–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19#[allow(clippy::struct_excessive_bools)]
20#[derive(Debug)]
21struct 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
32struct AppState {
33 #[allow(dead_code)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected