[][src]Struct heroku_rs::endpoints::pipelines::PipelineBuild

pub struct PipelineBuild {
    pub app: App,
    pub buildpacks: Vec<Buildpack>,
    pub created_at: DateTime<Utc>,
    pub id: String,
    pub output_stream_url: Option<String>,
    pub source_blob: SourceBlob,
    pub release: Option<Release>,
    pub slug: Option<Slug>,
    pub stack: String,
    pub status: String,
    pub updated_at: DateTime<Utc>,
    pub user: User,
}

Pipeline Builds

Stability: production

Information about latest builds of apps in a pipeline.

See Heroku documentation for more information about this endpoint

Fields

app: App

the app that the build is ran for

buildpacks: Vec<Buildpack>

buildpacks it's using

created_at: DateTime<Utc>

when build was created

id: String

unique identifier

output_stream_url: Option<String>

Build process output will be available from this URL as a stream.

source_blob: SourceBlob

Source blob struct containing url, checksum and version

release: Option<Release>

A release represents a combination of code, config vars and add-ons for an app on Heroku.

slug: Option<Slug>

slug created by this build

stack: String

Pipeline Stack

status: String

pipeline status

updated_at: DateTime<Utc>

when the pipeline was last updated

user: User

user account

Trait Implementations

impl ApiResult for PipelineBuild[src]

impl Clone for PipelineBuild[src]

impl Debug for PipelineBuild[src]

impl<'de> Deserialize<'de> for PipelineBuild[src]

impl Eq for PipelineBuild[src]

impl PartialEq<PipelineBuild> for PipelineBuild[src]

impl Serialize for PipelineBuild[src]

impl StructuralEq for PipelineBuild[src]

impl StructuralPartialEq for PipelineBuild[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<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.