Enum gdb_command::ExecType [−][src]
pub enum ExecType<'a> {
Local(&'a [&'a str]),
Remote(&'a str),
Core {
target: &'a str,
core: &'a str,
},
}Type of gdb execution: Remote attach to process, local run with args, core.
Variants
Run target program via gdb (–args) option.
Remote(&'a str)Attach to process via gdb (-p) option.
Run target via gdb with coredump.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for ExecType<'a>
impl<'a> RefUnwindSafe for ExecType<'a>impl<'a> UnwindSafe for ExecType<'a>
impl<'a> UnwindSafe for ExecType<'a>