Enum probe_rs::architecture::arm::sequences::ArmDebugSequenceError
source · pub enum ArmDebugSequenceError {
DebugBaseNotSpecified,
CtiBaseNotSpecified,
SequenceSpecific(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
An error occurred when executing an ARM debug sequence
Variants§
DebugBaseNotSpecified
Debug base address is required but not specified
CtiBaseNotSpecified
CTI base address is required but not specified
SequenceSpecific(Box<dyn Error + Send + Sync + 'static>)
An error occured in a debug sequence.
Trait Implementations§
source§impl Debug for ArmDebugSequenceError
impl Debug for ArmDebugSequenceError
source§impl Display for ArmDebugSequenceError
impl Display for ArmDebugSequenceError
source§impl Error for ArmDebugSequenceError
impl Error for ArmDebugSequenceError
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<ArmDebugSequenceError> for ArmError
impl From<ArmDebugSequenceError> for ArmError
source§fn from(source: ArmDebugSequenceError) -> Self
fn from(source: ArmDebugSequenceError) -> Self
Converts to this type from the input type.