[][src]Struct heroku_rs::endpoints::addons::patch::AddonConfigUpdate

pub struct AddonConfigUpdate<'a> {
    pub addon_id: &'a str,
    pub params: AddonConfigUpdateParams,
}

Add-on Config Update

Update an add-on’s config. 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 add-on identifier, either add-on id or add-on name

params: AddonConfigUpdateParams

parameters to pass to the Heroku API

Methods

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

pub fn new(addon_id: &'a str, config: Vec<AddonConfig>) -> AddonConfigUpdate<'a>[src]

Trait Implementations

impl<'a> HerokuEndpoint<Vec<AddonConfig>, (), AddonConfigUpdateParams> for AddonConfigUpdate<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for AddonConfigUpdate<'a>

impl<'a> Send for AddonConfigUpdate<'a>

impl<'a> Sync for AddonConfigUpdate<'a>

impl<'a> Unpin for AddonConfigUpdate<'a>

impl<'a> UnwindSafe for AddonConfigUpdate<'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.