pub enum AppRuntimeError {
NotFound(String),
Start {
name: String,
source: McpError,
},
Stop {
name: String,
source: McpError,
},
}Expand description
Errors surfaced while reading app runtimes.
Variants§
Trait Implementations§
Source§impl Debug for AppRuntimeError
impl Debug for AppRuntimeError
Source§impl Display for AppRuntimeError
impl Display for AppRuntimeError
Source§impl Error for AppRuntimeError
impl Error for AppRuntimeError
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()
Auto Trait Implementations§
impl Freeze for AppRuntimeError
impl !RefUnwindSafe for AppRuntimeError
impl Send for AppRuntimeError
impl Sync for AppRuntimeError
impl Unpin for AppRuntimeError
impl UnsafeUnpin for AppRuntimeError
impl !UnwindSafe for AppRuntimeError
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