[][src]Enum probe_rs::flashing::FileDownloadError

pub enum FileDownloadError {
    Flash(FlashError),
    IhexRead(ReaderError),
    IO(Error),
    Object(&'static str),
    Elf(Error),
    NoLoadableSegments,
}

A finite list of all the errors that can occur when flashing a given file.

This includes corrupt file issues, OS permission issues as well as chip connectivity and memory boundary issues.

Variants

Flash(FlashError)
IhexRead(ReaderError)
IO(Error)
Object(&'static str)
Elf(Error)
NoLoadableSegments

Trait Implementations

impl Debug for FileDownloadError[src]

impl Display for FileDownloadError[src]

impl Error for FileDownloadError[src]

impl From<Error> for FileDownloadError[src]

impl From<Error> for FileDownloadError[src]

impl From<FlashError> for FileDownloadError[src]

impl From<ReaderError> for FileDownloadError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.