pub enum HotRestartError {
CargoWatchNotInstalled,
CommandSpawnFailed(String),
CommandWaitFailed(String),
Other(String),
}
Variants§
Trait Implementations§
Source§impl Display for HotRestartError
impl Display for HotRestartError
Source§impl From<Error> for HotRestartError
impl From<Error> for HotRestartError
Source§fn from(err: Error) -> HotRestartError
fn from(err: Error) -> HotRestartError
Converts to this type from the input type.
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