[][src]Struct heroku_rs::endpoints::apps::patch::SSLUpdate

pub struct SSLUpdate<'a> {
    pub app_id: &'a str,
    pub ssl_id: &'a str,
    pub params: SSLUpdateParams<'a>,
}

SSL Endpoint Update

Update an existing SSL endpoint.

See Heroku documentation for more information about this endpoint

Fields

app_id: &'a str

unique app identifier, either app id or app name

ssl_id: &'a str

unique ssl identifier

params: SSLUpdateParams<'a>

The parameters to pass to the Heroku API

Methods

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

pub fn new(
    app_id: &'a str,
    ssl_id: &'a str,
    certificate_chain: Option<&'a str>,
    private_key: Option<&'a str>,
    preprocess: Option<bool>
) -> SSLUpdate<'a>
[src]

Update Heroku app SSL with parameters

Trait Implementations

impl<'a> HerokuEndpoint<SSL, (), SSLUpdateParams<'a>> for SSLUpdate<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SSLUpdate<'a>

impl<'a> Send for SSLUpdate<'a>

impl<'a> Sync for SSLUpdate<'a>

impl<'a> Unpin for SSLUpdate<'a>

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