pub struct BoardDetailsResp {Show 14 fields
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§
Source§impl Clone for BoardDetailsResp
impl Clone for BoardDetailsResp
Source§fn clone(&self) -> BoardDetailsResp
fn clone(&self) -> BoardDetailsResp
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BoardDetailsResp
impl Debug for BoardDetailsResp
Source§impl Default for BoardDetailsResp
impl Default for BoardDetailsResp
Source§fn default() -> BoardDetailsResp
fn default() -> BoardDetailsResp
Returns the “default value” for a type. Read more
Source§impl Message for BoardDetailsResp
impl Message for BoardDetailsResp
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for BoardDetailsResp
impl PartialEq for BoardDetailsResp
impl StructuralPartialEq for BoardDetailsResp
Auto Trait Implementations§
impl Freeze for BoardDetailsResp
impl RefUnwindSafe for BoardDetailsResp
impl Send for BoardDetailsResp
impl Sync for BoardDetailsResp
impl Unpin for BoardDetailsResp
impl UnwindSafe for BoardDetailsResp
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request