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

pub struct PipelineTransfer {
    pub pipeline: Pipeline,
    pub previous_owner: PreviousOwner,
    pub new_owner: NewOwner,
}

Pipeline Transfer

Stability: production

A pipeline transfer is the process of changing pipeline ownership along with the contained apps.

See Heroku documentation for more information about this endpoint

Fields

pipeline: Pipelineprevious_owner: PreviousOwnernew_owner: NewOwner

Trait Implementations

impl ApiResult for PipelineTransfer[src]

impl Clone for PipelineTransfer[src]

impl Debug for PipelineTransfer[src]

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

impl Eq for PipelineTransfer[src]

impl HerokuEndpoint<PipelineTransfer, (), PipelineTransferCreateParams> for PipelineTransferCreate[src]

impl PartialEq<PipelineTransfer> for PipelineTransfer[src]

impl Serialize for PipelineTransfer[src]

impl StructuralEq for PipelineTransfer[src]

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