[][src]Struct arduino_cli_client::commands::InitResp

pub struct InitResp {
    pub instance: Option<Instance>,
    pub platforms_index_errors: Vec<String>,
    pub libraries_index_error: String,
    pub download_progress: Option<DownloadProgress>,
    pub task_progress: Option<TaskProgress>,
}

Fields

instance: Option<Instance>

An Arduino Core Service instance.

platforms_index_errors: Vec<String>

Error messages related to any problems encountered while parsing the platforms index files.

libraries_index_error: String

Error message if a problem was encountered while parsing the libraries index file.

download_progress: Option<DownloadProgress>

Progress of the downloads of platforms and libraries index files.

task_progress: Option<TaskProgress>

Describes the current stage of the initialization.

Trait Implementations

impl Clone for InitResp[src]

impl Debug for InitResp[src]

impl Default for InitResp[src]

impl Message for InitResp[src]

impl PartialEq<InitResp> for InitResp[src]

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