pub enum EnvDaemonError {
StartupTimeout,
StartupFailed(String),
AlreadyRunning(String),
NotRunning(String),
Request(String),
Io(Error),
}Variants§
StartupTimeout
StartupFailed(String)
AlreadyRunning(String)
NotRunning(String)
Request(String)
Io(Error)
Trait Implementations§
Source§impl Debug for EnvDaemonError
impl Debug for EnvDaemonError
Source§impl Display for EnvDaemonError
impl Display for EnvDaemonError
Source§impl Error for EnvDaemonError
impl Error for EnvDaemonError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<EnvDaemonError> for AgentSimError
impl From<EnvDaemonError> for AgentSimError
Source§fn from(source: EnvDaemonError) -> Self
fn from(source: EnvDaemonError) -> Self
Converts to this type from the input type.
Source§impl From<EnvDaemonError> for ConnectionError
impl From<EnvDaemonError> for ConnectionError
Source§fn from(source: EnvDaemonError) -> Self
fn from(source: EnvDaemonError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EnvDaemonError
impl !RefUnwindSafe for EnvDaemonError
impl Send for EnvDaemonError
impl Sync for EnvDaemonError
impl Unpin for EnvDaemonError
impl UnsafeUnpin for EnvDaemonError
impl !UnwindSafe for EnvDaemonError
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