[][src]Struct heroku_rs::endpoints::dynos::Dyno

pub struct Dyno {
    pub app: App,
    pub attach_url: Option<String>,
    pub command: String,
    pub created_at: String,
    pub id: String,
    pub name: String,
    pub release: Release,
    pub size: String,
    pub state: String,
    pub type: String,
    pub updated_at: String,
}

Heroku Dyno

Stability: production

Dynos encapsulate running processes of an app on Heroku

See Heroku documentation for more information about this endpoint

Fields

app: App

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

attach_url: Option<String>

a URL to stream output from for attached processes or null for non-attached processes

command: String

command used to start this process

created_at: String

when dyno was created

id: String

unique identifier of this dyno

name: String

the name of this process on this dyno

release: Release

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

size: String

dyno size (default: “standard-1X”)

state: String

current status of process (either: crashed, down, idle, starting, or up)

type: String

type of process

updated_at: String

when process last changed state

Trait Implementations

impl ApiResult for Dyno[src]

impl Clone for Dyno[src]

impl Debug for Dyno[src]

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

impl Eq for Dyno[src]

impl HerokuEndpoint<Dyno, (), ()> for DynoDetails[src]

impl HerokuEndpoint<Dyno, (), ()> for DynoActionStop[src]

impl HerokuEndpoint<Dyno, (), DynoCreateParams> for DynoCreate[src]

impl PartialEq<Dyno> for Dyno[src]

impl Serialize for Dyno[src]

impl StructuralEq for Dyno[src]

impl StructuralPartialEq for Dyno[src]

Auto Trait Implementations

impl RefUnwindSafe for Dyno

impl Send for Dyno

impl Sync for Dyno

impl Unpin for Dyno

impl UnwindSafe for Dyno

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.