MCPcopy Create free account
hub / github.com/algoscienceacademy/RustUI / BuildStatus

Class BuildStatus

src/dev_server.rs:62–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60
61#[derive(Clone, Debug)]
62pub 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
70pub struct DevServer {
71 watcher: Option<RecommendedWatcher>,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected