[][src]Struct heroku_rs::endpoints::domains::Domain

pub struct Domain {
    pub acm_status: Option<String>,
    pub acm_status_reason: Option<String>,
    pub app: App,
    pub cname: Option<String>,
    pub created_at: String,
    pub hostname: String,
    pub id: String,
    pub kind: String,
    pub updated_at: String,
    pub status: String,
}

Domain

Stability: production

Domains define what web routes should be routed to an app on Heroku.

See Heroku documentation for more information about this endpoint

Fields

acm_status: Option<String>

status of this record’s ACM

acm_status_reason: Option<String>

reason for the status of this record’s ACM

app: App

App

cname: Option<String>

canonical name record, the address to point a domain at

created_at: String

when domain was created

hostname: String

full hostname of the domain

id: String

unique identifier of this domain

kind: String

type of domain name. One of:"heroku" or "custom"

updated_at: String

when domain was updated

status: String

status of this record’s cname

Trait Implementations

impl ApiResult for Domain[src]

impl Clone for Domain[src]

impl Debug for Domain[src]

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

impl Eq for Domain[src]

impl HerokuEndpoint<Domain, (), ()> for DomainDelete[src]

impl HerokuEndpoint<Domain, (), ()> for DomainDetails[src]

impl HerokuEndpoint<Domain, (), DomainCreateParams> for DomainCreate[src]

impl PartialEq<Domain> for Domain[src]

impl Serialize for Domain[src]

impl StructuralEq for Domain[src]

impl StructuralPartialEq for Domain[src]

Auto Trait Implementations

impl RefUnwindSafe for Domain

impl Send for Domain

impl Sync for Domain

impl Unpin for Domain

impl UnwindSafe for Domain

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.