[][src]Struct heroku_rs::endpoints::addons::get::WebhookDeliveryDetails

pub struct WebhookDeliveryDetails<'a> {
    pub addon_id: &'a str,
    pub delivery_id: &'a str,
}

Add-on Webhook Delivery Info

Returns the info for an existing delivery. Can only be accessed by the add-on partner providing this add-on.

See Heroku documentation for more information about this endpoint

Fields

addon_id: &'a str

unique addon identifier

delivery_id: &'a str

unique webhook delivery identifier

Methods

impl<'a> WebhookDeliveryDetails<'a>[src]

pub fn new(
    addon_id: &'a str,
    delivery_id: &'a str
) -> WebhookDeliveryDetails<'a>
[src]

Trait Implementations

impl<'a> HerokuEndpoint<AddonWebhookDelivery, (), ()> for WebhookDeliveryDetails<'a>[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.