[][src]Struct arduino_cli_client::commands::BoardDetailsResp

pub struct BoardDetailsResp {
    pub fqbn: String,
    pub name: String,
    pub version: String,
    pub properties_id: String,
    pub alias: String,
    pub official: bool,
    pub pinout: String,
    pub package: Option<Package>,
    pub platform: Option<BoardPlatform>,
    pub tools_dependencies: Vec<ToolsDependencies>,
    pub config_options: Vec<ConfigOption>,
    pub identification_pref: Vec<IdentificationPref>,
    pub programmers: Vec<Programmer>,
    pub debugging_supported: bool,
}

Fields

fqbn: String

The fully qualified board name of the board.

name: String

Name used to identify the board to humans (e.g., Arduino Uno).

version: String

Installed version of the board's platform.

properties_id: String

The board ID component of the FQBN (e.g., uno).

alias: String

Board alias that can be used as a more user friendly alternative to the FQBN.

official: bool

Whether this is an official or 3rd party board.

pinout: String

URL of the board's pinout documentation.

package: Option<Package>

Data about the package that contains the board's platform.

platform: Option<BoardPlatform>

Data about the board's platform.

tools_dependencies: Vec<ToolsDependencies>

Tool dependencies of the board.

config_options: Vec<ConfigOption>

The board's custom configuration options.

identification_pref: Vec<IdentificationPref>

Identifying information for the board (e.g., USB VID/PID).

programmers: Vec<Programmer>

List of programmers supported by the board

debugging_supported: bool

Set to true if the board supports debugging

Trait Implementations

impl Clone for BoardDetailsResp[src]

impl Debug for BoardDetailsResp[src]

impl Default for BoardDetailsResp[src]

impl Message for BoardDetailsResp[src]

impl PartialEq<BoardDetailsResp> for BoardDetailsResp[src]

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