Enum gdb_command::ExecType
source · [−]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
Local(&'a [&'a str])
Run target program via gdb (–args) option.
Remote(&'a str)
Attach to process via gdb (-p) option.
Core
Run target via gdb with coredump.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for ExecType<'a>
impl<'a> Send for ExecType<'a>
impl<'a> Sync for ExecType<'a>
impl<'a> Unpin for ExecType<'a>
impl<'a> UnwindSafe for ExecType<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more