Enum gdb_command::ExecType [−][src]
pub enum ExecType<'a> {
Local(&'a [&'a str]),
Remote(&'a str),
Core {
target: &'a str,
core: &'a str,
},
}
Expand description
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.
Tuple Fields of Remote
0: &'a str
Run target via gdb
with coredump.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for ExecType<'a>
impl<'a> UnwindSafe for ExecType<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more