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

pub struct SSLUpdateParams<'a> {
    pub certificate_chain: Option<&'a str>,
    pub private_key: Option<&'a str>,
    pub preprocess: Option<bool>,
}

Update app's ssl endpoint with parameters.

See Heroku documentation for more information about this endpoint

Fields

certificate_chain: Option<&'a str>

raw contents of the public certificate chain (eg: .crt or .pem file)

private_key: Option<&'a str>

contents of the private key (eg .key file)

preprocess: Option<bool>

allow Heroku to modify an uploaded public certificate chain if deemed advantageous by adding missing intermediaries, stripping unnecessary ones, etc. default: true

Trait Implementations

impl<'a> Clone for SSLUpdateParams<'a>[src]

impl<'a> Debug for SSLUpdateParams<'a>[src]

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

impl<'a> Serialize for SSLUpdateParams<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SSLUpdateParams<'a>

impl<'a> Send for SSLUpdateParams<'a>

impl<'a> Sync for SSLUpdateParams<'a>

impl<'a> Unpin for SSLUpdateParams<'a>

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