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

pub struct PipelinePromotion {
    pub created_at: DateTime<Utc>,
    pub id: String,
    pub pipeline: Pipeline,
    pub source: Source,
    pub status: String,
    pub updated_at: Option<DateTime<Utc>>,
}

Pipeline Promotion

Stability: production

Promotions allow you to move code from an app in a pipeline to all targets

See Heroku documentation for more information about this endpoint

Fields

created_at: DateTime<Utc>

when promotion was created

id: String

unique identifier of promotion

pipeline: Pipeline

pipeline

source: Source

source

status: String

status of promotion. one of:"pending" or "completed"

updated_at: Option<DateTime<Utc>>

when promotion was updated

Trait Implementations

impl ApiResult for PipelinePromotion[src]

impl Clone for PipelinePromotion[src]

impl Debug for PipelinePromotion[src]

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

impl Eq for PipelinePromotion[src]

impl HerokuEndpoint<PipelinePromotion, (), ()> for PipelinePromotionDetails[src]

impl HerokuEndpoint<PipelinePromotion, (), PipelinePromotionCreateParams> for PipelinePromotionCreate[src]

impl PartialEq<PipelinePromotion> for PipelinePromotion[src]

impl Serialize for PipelinePromotion[src]

impl StructuralEq for PipelinePromotion[src]

impl StructuralPartialEq for PipelinePromotion[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.