[][src]Struct heroku_rs::endpoints::review::ReviewApp

pub struct ReviewApp {
    pub app: Option<App>,
    pub app_setup: Option<AppSetup>,
    pub branch: String,
    pub created_at: DateTime<Utc>,
    pub id: String,
    pub pipeline: Pipeline,
    pub status: String,
    pub updated_at: DateTime<Utc>,
    pub creator: Value,
    pub wait_for_ci: bool,
    pub error_status: Option<String>,
    pub message: Option<String>,
    pub fork_repo: Option<ForkRepo>,
    pub pr_number: Option<i64>,
}

Review App

Stability: production

An ephemeral app to review a set of changes

For more information please refer to the Heroku documentation

Fields

app: Option<App>

the Heroku app associated to this review app

app_setup: Option<AppSetup>

the app setup for this review app

branch: String

the branch of the repository which the review app is based on

created_at: DateTime<Utc>

when test run was created

id: String

unique identifier of the review app

pipeline: Pipeline

the pipeline associated to the review app

status: String

current state of the review app one of:"pending" or "creating" or "created" or "deleting" or "deleted" or "errored"

updated_at: DateTime<Utc>

when review app was updated

creator: Value

The user who created the review app

wait_for_ci: bool

wait for ci before building the app

error_status: Option<String>

error message from creating the review app if any

message: Option<String>

message from creating the review app if any

fork_repo: Option<ForkRepo>

fork repo

pr_number: Option<i64>

GitHub Pull Request number if the Review app was created automatically

Trait Implementations

impl ApiResult for ReviewApp[src]

impl Clone for ReviewApp[src]

impl Debug for ReviewApp[src]

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

impl HerokuEndpoint<ReviewApp, (), ()> for ReviewAppDelete[src]

impl HerokuEndpoint<ReviewApp, (), ()> for ReviewAppDetails[src]

impl HerokuEndpoint<ReviewApp, (), ()> for ReviewAppByAppDetails[src]

impl HerokuEndpoint<ReviewApp, (), ReviewAppCreateParams> for ReviewAppCreate[src]

impl PartialEq<ReviewApp> for ReviewApp[src]

impl Serialize for ReviewApp[src]

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