[][src]Struct heroku_rs::endpoints::apps::App

pub struct App {
    pub acm: bool,
    pub archived_at: Option<String>,
    pub buildpack_provided_description: Option<String>,
    pub build_stack: BuildStack,
    pub created_at: String,
    pub git_url: String,
    pub id: String,
    pub internal_routing: Option<bool>,
    pub maintenance: bool,
    pub name: String,
    pub owner: Owner,
    pub organization: Option<Organization>,
    pub team: Option<Team>,
    pub region: Region,
    pub released_at: Option<String>,
    pub repo_size: Option<i64>,
    pub slug_size: Option<i64>,
    pub space: Option<Space>,
    pub stack: Stack,
    pub updated_at: String,
    pub web_url: String,
}

Heroku App

Stability: production

An app represents the program that you would like to deploy and run on Heroku.

See Heroku documentation for more information about this endpoint

Fields

acm: bool

ACM status of this app

archived_at: Option<String>

when app was archived

buildpack_provided_description: Option<String>

description from buildpack of app

build_stack: BuildStack

Stacks are the different application execution environments available in the Heroku platform.

created_at: String

when app was created

git_url: String

git repo URL of app

id: String

unique identifier

internal_routing: Option<bool>

describes whether a Private Spaces app is externally routable or not

maintenance: bool

maintenance status of app

name: String

name of app

owner: Owner

account owner

organization: Option<Organization>

identity of team

team: Option<Team>

identity of team

region: Region

A region represents a geographic location in which your application may run.

released_at: Option<String>

when app was released

repo_size: Option<i64>

git repo size in bytes of app

slug_size: Option<i64>

slug size in bytes of app

space: Option<Space>

identity of space

stack: Stack

Stacks are the different application execution environments available in the Heroku platform.

updated_at: String

when app was updated

web_url: String

web URL of app

Trait Implementations

impl ApiResult for App[src]

impl Clone for App[src]

impl Debug for App[src]

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

impl Eq for App[src]

impl HerokuEndpoint<App, (), ()> for AppDelete[src]

impl HerokuEndpoint<App, (), ()> for AppDisableAcm[src]

impl HerokuEndpoint<App, (), ()> for AppDetails[src]

impl HerokuEndpoint<App, (), ()> for AppRefreshAcm[src]

impl HerokuEndpoint<App, (), ()> for AppEnableAcm[src]

impl HerokuEndpoint<App, (), AppCreateParams> for AppCreate[src]

impl HerokuEndpoint<App, (), AppUpdateParams> for AppUpdate[src]

impl PartialEq<App> for App[src]

impl Serialize for App[src]

impl StructuralEq for App[src]

impl StructuralPartialEq for App[src]

Auto Trait Implementations

impl RefUnwindSafe for App

impl Send for App

impl Sync for App

impl Unpin for App

impl UnwindSafe for App

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.