[][src]Struct heroku_rs::endpoints::addons::delete::AddonDelete

pub struct AddonDelete<'a> {
    pub app_id: &'a str,
    pub addon_id: &'a str,
}

Fields

app_id: &'a str

unique app identifier, either app name or app id

addon_id: &'a str

unique add-on identifier, either add-on id or add-on name

Methods

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

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

Delete addon

Trait Implementations

impl<'a> HerokuEndpoint<Addon, (), ()> for AddonDelete<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for AddonDelete<'a>

impl<'a> Send for AddonDelete<'a>

impl<'a> Sync for AddonDelete<'a>

impl<'a> Unpin for AddonDelete<'a>

impl<'a> UnwindSafe for AddonDelete<'a>

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.