[][src]Struct heroku_rs::endpoints::apps::SSL

pub struct SSL {
    pub app: App,
    pub certificate_chain: String,
    pub cname: String,
    pub created_at: DateTime<Utc>,
    pub id: String,
    pub name: String,
    pub updated_at: DateTime<Utc>,
}

SNI Endpoint

Stability: development

SNI Endpoint is a public address serving a custom SSL cert for HTTPS traffic, using the SNI TLS extension, to a Heroku app.

See Heroku documentation for more information about this endpoint

Fields

app: App

app

certificate_chain: String

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

cname: String

canonical name record, the address to point a domain at

created_at: DateTime<Utc>

when endpoint was created

id: String

unique identifier of this SSL endpoint

name: String

unique name for SSL endpoint pattern: ^[a-z][a-z0-9-]{2,29}$

updated_at: DateTime<Utc>

when endpoint was updated

Trait Implementations

impl ApiResult for SSL[src]

impl Clone for SSL[src]

impl Debug for SSL[src]

impl<'de> Deserialize<'de> for SSL[src]

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

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

impl<'a> HerokuEndpoint<SSL, (), SSLCreateParams<'a>> for SSLCreate<'a>[src]

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

impl Serialize for SSL[src]

Auto Trait Implementations

impl RefUnwindSafe for SSL

impl Send for SSL

impl Sync for SSL

impl Unpin for SSL

impl UnwindSafe for SSL

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.