pub enum Error {
Unexpected(Error),
User(Error),
Help {
command: Vec<String>,
output: String,
code: i32,
},
Config(Error),
ExitWithCode(i32),
}
Expand description
A top level error type for ffx tool results
Variants§
Unexpected(Error)
An error that qualifies as a bugcheck
User(Error)
A known kind of error that can be reported usefully to the user
Help
An early-exit that should result in outputting help to the user (like [argh::EarlyExit
]),
but is not itself an error in any meaningful sense.
Fields
Config(Error)
Something failed before ffx’s configuration could be loaded (like an invalid argument, a failure to read an env config file, etc).
Errors of this type should include any information the user might need to recover from the issue, because it will not advise the user to look in the log files or anything like that.
ExitWithCode(i32)
Exit with a specific error code but no output
Implementations§
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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 Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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