Enum gdb_command::error::Error [−][src]
pub enum Error {
ParseOutput(String),
ExitCode(i32),
NoFile(String),
IO(Error),
StacktraceParse(String),
MappedFilesParse(String),
IntParse(ParseIntError),
}
Expand description
A custom GdbCommand error
Variants
ParseOutput(String)
Gdb output parsing error
Tuple Fields of ParseOutput
0: String
ExitCode(i32)
Gdb exit status error
Tuple Fields of ExitCode
0: i32
NoFile(String)
No executable/core found to run under gdb.
Tuple Fields of NoFile
0: String
IO(Error)
An IO based error
Tuple Fields of IO
0: Error
StacktraceParse(String)
Error parsing stacktrace
Tuple Fields of StacktraceParse
0: String
MappedFilesParse(String)
Error parsing mapped files
Tuple Fields of MappedFilesParse
0: String
IntParse(ParseIntError)
An ParseInt based error
Tuple Fields of IntParse
Trait Implementations
Performs the conversion.