[][src]Struct arduino_cli_client::debug::GetDebugConfigResp

pub struct GetDebugConfigResp {
    pub executable: String,
    pub toolchain: String,
    pub toolchain_path: String,
    pub toolchain_prefix: String,
    pub server: String,
    pub server_path: String,
    pub toolchain_configuration: HashMap<String, String>,
    pub server_configuration: HashMap<String, String>,
}

Fields

executable: String

The executable binary to debug

toolchain: String

The toolchain type used for the build (for example "gcc")

toolchain_path: String

The toolchain directory

toolchain_prefix: String

The toolchain architecture prefix (for example "arm-none-eabi-")

server: String

The GDB server type used to connect to the programmer/board (for example "openocd")

server_path: String

The GDB server directory

toolchain_configuration: HashMap<String, String>

Extra configuration parameters wrt toolchain

server_configuration: HashMap<String, String>

Extra configuration parameters wrt GDB server

Trait Implementations

impl Clone for GetDebugConfigResp[src]

impl Debug for GetDebugConfigResp[src]

impl Default for GetDebugConfigResp[src]

impl Message for GetDebugConfigResp[src]

impl PartialEq<GetDebugConfigResp> for GetDebugConfigResp[src]

impl StructuralPartialEq for GetDebugConfigResp[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]