Struct drone::cli::GdbCmd[][src]

pub struct GdbCmd {
    pub firmware: Option<PathBuf>,
    pub reset: bool,
    pub interpreter: Option<String>,
    pub gdb_args: Vec<OsString>,
}

Fields

firmware: Option<PathBuf>

Path to the compiled firmware file

reset: bool

Reset before the operation

interpreter: Option<String>

Select a specific interpreter / user interface

gdb_args: Vec<OsString>

Arguments for gdb

Trait Implementations

impl Debug for GdbCmd[src]

impl StructOpt for GdbCmd[src]

impl StructOptInternal for GdbCmd[src]

Auto Trait Implementations

impl RefUnwindSafe for GdbCmd

impl Send for GdbCmd

impl Sync for GdbCmd

impl Unpin for GdbCmd

impl UnwindSafe for GdbCmd

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,