[][src]Struct arduino_cli_client::debug::DebugConfigReq

pub struct DebugConfigReq {
    pub instance: Option<Instance>,
    pub fqbn: String,
    pub sketch_path: String,
    pub port: String,
    pub interpreter: String,
    pub import_dir: String,
    pub programmer: String,
}

Fields

instance: Option<Instance>

Arduino Core Service instance from the Init response.

fqbn: String

Fully qualified board name of the board in use (e.g., arduino:samd:mkr1000). If this is omitted, the FQBN attached to the sketch will be used.

sketch_path: String

Path to the sketch that is running on the board. The compiled executable is expected to be located under this path.

port: String

Port of the debugger (optional).

interpreter: String

Which GDB command interpreter to use.

import_dir: String

Directory containing the compiled executable. If import_dir is not specified, the executable is assumed to be in {sketch_path}/build/{fqbn}/.

programmer: String

The programmer to use for debugging.

Trait Implementations

impl Clone for DebugConfigReq[src]

impl Debug for DebugConfigReq[src]

impl Default for DebugConfigReq[src]

impl Message for DebugConfigReq[src]

impl PartialEq<DebugConfigReq> for DebugConfigReq[src]

impl StructuralPartialEq for DebugConfigReq[src]

Auto Trait Implementations

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>, 

impl<T> WithSubscriber for T[src]