[][src]Struct jenkins_api::action::maven::Artifact

pub struct Artifact {
    pub artifact_id: String,
    pub canonical_name: String,
    pub classifier: Option<String>,
    pub file_name: String,
    pub group_id: String,
    pub md5sum: String,
    pub artifact_type: String,
    pub version: String,
}

Artifact produced by a build

Fields

artifact_id: String

Artifact ID

canonical_name: String

Canonical name

classifier: Option<String>

Classifier (sources, javadoc, ...)

file_name: String

File name

group_id: String

Group ID

md5sum: String

MD5 checksum

artifact_type: String

Artifact type (jar, war, javadoc, java-source, ...)

version: String

Version

Trait Implementations

impl Debug for Artifact[src]

impl<'de> Deserialize<'de> for Artifact[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.