[][src]Struct arduino_cli_client::commands::LibraryRelease

pub struct LibraryRelease {
    pub author: String,
    pub version: String,
    pub maintainer: String,
    pub sentence: String,
    pub paragraph: String,
    pub website: String,
    pub category: String,
    pub architectures: Vec<String>,
    pub types: Vec<String>,
    pub resources: Option<DownloadResource>,
    pub license: String,
    pub provides_includes: Vec<String>,
    pub dependencies: Vec<LibraryDependency>,
}

Fields

author: String

Value of the author field in library.properties.

version: String

Value of the version field in library.properties.

maintainer: String

Value of the maintainer field in library.properties.

sentence: String

Value of the sentence field in library.properties.

paragraph: String

Value of the paragraph field in library.properties.

website: String

Value of the url field in library.properties.

category: String

Value of the category field in library.properties.

architectures: Vec<String>

Value of the architectures field in library.properties.

types: Vec<String>

The type categories of the library, as defined in the libraries index. Possible values: Arduino, Partner, Recommended, Contributed, Retired.

resources: Option<DownloadResource>

Information about the library archive file.

license: String

Value of the license field in library.properties.

provides_includes: Vec<String>

Value of the includes field in library.properties.

dependencies: Vec<LibraryDependency>

The names of the library's dependencies, as defined by the 'depends' field of library.properties.

Trait Implementations

impl Clone for LibraryRelease[src]

impl Debug for LibraryRelease[src]

impl Default for LibraryRelease[src]

impl Message for LibraryRelease[src]

impl PartialEq<LibraryRelease> for LibraryRelease[src]

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