[][src]Struct heroku_rs::endpoints::addons::AddonAttachment

pub struct AddonAttachment {
    pub addon: Addon,
    pub app: App,
    pub created_at: DateTime<Utc>,
    pub id: String,
    pub name: String,
    pub namespace: Option<String>,
    pub updated_at: DateTime<Utc>,
    pub web_url: Option<String>,
    pub log_input_url: Option<String>,
}

Add-on Attachment

Stability: prototype

An add-on attachment represents a connection between an app and an add-on that it has been given access to.

For more information please refer to the Heroku documentation

Fields

addon: Addon

addon

app: App

app

created_at: DateTime<Utc>

when add-on attachment was created

id: String

unique identifier of this add-on attachment

name: String

unique name for this add-on attachment to this app

namespace: Option<String>

attachment namespace

updated_at: DateTime<Utc>

when add-on attachment was updated

web_url: Option<String>

URL for logging into web interface of add-on in attached app context

log_input_url: Option<String>

URL for add-on partners to write to an add-on’s logs

Trait Implementations

impl ApiResult for AddonAttachment[src]

impl Clone for AddonAttachment[src]

impl Debug for AddonAttachment[src]

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

impl<'a> HerokuEndpoint<AddonAttachment, (), ()> for AttachmentDelete<'a>[src]

impl<'a> HerokuEndpoint<AddonAttachment, (), ()> for AttachmentDetails<'a>[src]

impl<'a> HerokuEndpoint<AddonAttachment, (), ()> for AttachmentDetailsByApp<'a>[src]

impl<'a> HerokuEndpoint<AddonAttachment, (), AttachmentCreateParams<'a>> for AttachmentCreate<'a>[src]

impl Serialize for AddonAttachment[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.