pub enum SkypilotError {
EnvBuildFailed(String),
LaunchFailed {
cluster: String,
message: String,
},
ExecFailed {
cluster: String,
message: String,
},
NoConfig,
Nix(NixError),
Dag(String),
General(String),
}Variants§
Trait Implementations§
Source§impl Debug for SkypilotError
impl Debug for SkypilotError
Source§impl Display for SkypilotError
impl Display for SkypilotError
Source§impl Error for SkypilotError
impl Error for SkypilotError
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 SkypilotError
impl !RefUnwindSafe for SkypilotError
impl Send for SkypilotError
impl Sync for SkypilotError
impl Unpin for SkypilotError
impl UnsafeUnpin for SkypilotError
impl !UnwindSafe for SkypilotError
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