hot_restart/error/enum.rs
1/// Errors that can occur during hot restart process.
2pub enum HotRestartError {
3 /// Indicates cargo-watch is not installed.
4 CargoWatchNotInstalled,
5 /// Failed to spawn command process.
6 CommandSpawnFailed(String),
7 /// Failed to wait for command process completion.
8 CommandWaitFailed(String),
9 /// Other unspecified error with message.
10 Other(String),
11}