| 60 | |
| 61 | #[derive(Clone, Debug)] |
| 62 | pub struct BuildStatus { |
| 63 | pub in_progress: bool, |
| 64 | pub last_build: Option<Instant>, |
| 65 | pub error: Option<String>, |
| 66 | pub progress: Option<(u32, u32)>, // (current, total) |
| 67 | pub message: Option<String>, |
| 68 | } |
| 69 | |
| 70 | pub struct DevServer { |
| 71 | watcher: Option<RecommendedWatcher>, |
nothing calls this directly
no outgoing calls
no test coverage detected