pub enum HotRestartError {
CargoWatchNotInstalled,
CommandSpawnFailed(String),
CommandWaitFailed(String),
Other(String),
}
Expand description
Errors that can occur during hot restart process.
Variants§
CargoWatchNotInstalled
Indicates cargo-watch is not installed.
CommandSpawnFailed(String)
Failed to spawn command process.
CommandWaitFailed(String)
Failed to wait for command process completion.
Other(String)
Other unspecified error with message.
Trait Implementations§
Source§impl Display for HotRestartError
Implementation of Display trait for HotRestartError.
impl Display for HotRestartError
Implementation of Display trait for HotRestartError.
Auto Trait Implementations§
impl Freeze for HotRestartError
impl RefUnwindSafe for HotRestartError
impl Send for HotRestartError
impl Sync for HotRestartError
impl Unpin for HotRestartError
impl UnwindSafe for HotRestartError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more