pub enum SrvSpawnError {
BinaryNotFound(String),
SpawnFailed(String),
JobAssignFailed(String),
ResumeFailed(String),
EstartTimeout,
EstartChannelClosed,
}Expand description
Errors during srv spawn — granular enough that the launcher can log the right diagnostic.
Variants§
BinaryNotFound(String)
SpawnFailed(String)
JobAssignFailed(String)
ResumeFailed(String)
EstartTimeout
EstartChannelClosed
Trait Implementations§
Source§impl Debug for SrvSpawnError
impl Debug for SrvSpawnError
Auto Trait Implementations§
impl Freeze for SrvSpawnError
impl RefUnwindSafe for SrvSpawnError
impl Send for SrvSpawnError
impl Sync for SrvSpawnError
impl Unpin for SrvSpawnError
impl UnwindSafe for SrvSpawnError
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