pub enum OperationError {
Show 21 variants
NoProbesFound,
FailedToReadFamilies(RegistryError),
FailedToOpenElf {
source: Error,
path: PathBuf,
},
FailedToLoadElfData(FileDownloadError),
FailedToOpenProbe(DebugProbeError),
MultipleProbesFound {
number: usize,
},
FlashingFailed {
source: FlashError,
target: Target,
target_spec: Option<String>,
path: PathBuf,
},
FailedChipDescriptionParsing {
source: RegistryError,
path: PathBuf,
},
FailedToChangeWorkingDirectory {
source: Error,
path: PathBuf,
},
FailedToBuildExternalCargoProject {
source: ArtifactError,
path: PathBuf,
},
FailedToBuildCargoProject(ArtifactError),
ChipNotFound {
source: RegistryError,
name: String,
},
FailedToSelectProtocol {
source: DebugProbeError,
protocol: WireProtocol,
},
FailedToSelectProtocolSpeed {
source: DebugProbeError,
speed: u32,
},
AttachingFailed {
source: Error,
connect_under_reset: bool,
},
AttachingToCoreFailed(Error),
TargetResetFailed(Error),
TargetResetHaltFailed(Error),
IOError(Error),
InvalidAPIOrder,
CliArgument(Error),
}Variants
NoProbesFound
FailedToReadFamilies(RegistryError)
FailedToOpenElf
FailedToLoadElfData(FileDownloadError)
FailedToOpenProbe(DebugProbeError)
MultipleProbesFound
Fields
number: usizeFlashingFailed
FailedChipDescriptionParsing
FailedToChangeWorkingDirectory
FailedToBuildExternalCargoProject
FailedToBuildCargoProject(ArtifactError)
ChipNotFound
FailedToSelectProtocol
FailedToSelectProtocolSpeed
AttachingFailed
AttachingToCoreFailed(Error)
TargetResetFailed(Error)
TargetResetHaltFailed(Error)
IOError(Error)
InvalidAPIOrder
CliArgument(Error)
Trait Implementations
sourceimpl Debug for OperationError
impl Debug for OperationError
sourceimpl Display for OperationError
impl Display for OperationError
sourceimpl Error for OperationError
impl Error for OperationError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<Error> for OperationError
impl From<Error> for OperationError
Auto Trait Implementations
impl !RefUnwindSafe for OperationError
impl Send for OperationError
impl Sync for OperationError
impl Unpin for OperationError
impl !UnwindSafe for OperationError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more