Enum embedded_runner::RunnerError 
source · pub enum RunnerError {
    RttTimeout,
    Gdb(String),
    GdbScript(String),
    Config(ConfigError),
    Defmt(String),
    Setup(String),
    PreRunner(String),
    PostRunner(String),
    Coverage(CoverageError),
}Variants§
RttTimeout
Gdb(String)
GdbScript(String)
Config(ConfigError)
Defmt(String)
Setup(String)
PreRunner(String)
PostRunner(String)
Coverage(CoverageError)
Trait Implementations§
source§impl Debug for RunnerError
 
impl Debug for RunnerError
source§impl Display for RunnerError
 
impl Display for RunnerError
source§impl Error for RunnerError
 
impl Error for RunnerError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl From<ConfigError> for RunnerError
 
impl From<ConfigError> for RunnerError
source§fn from(source: ConfigError) -> Self
 
fn from(source: ConfigError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RunnerError
impl !RefUnwindSafe for RunnerError
impl Send for RunnerError
impl Sync for RunnerError
impl Unpin for RunnerError
impl !UnwindSafe for RunnerError
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