[][src]Struct heroku_rs::endpoints::misc::Region

pub struct Region {
    pub country: String,
    pub created_at: DateTime<Utc>,
    pub description: String,
    pub id: String,
    pub locale: String,
    pub name: String,
    pub private_capable: bool,
    pub provider: Provider,
    pub updated_at: DateTime<Utc>,
}

Region

Stability: production

A region represents a geographic location in which your application may run.

For more information please refer to the Heroku documentation

Fields

country: String

country where the region exists

created_at: DateTime<Utc>

when region was created

description: String

description of region

id: String

unique identifier

locale: String

area in the country where the region exists

name: String

name of region

private_capable: bool

whether or not region is available for creating a Private Space

provider: Provider

provider

updated_at: DateTime<Utc>

when region was updated

Trait Implementations

impl ApiResult for Region[src]

impl Clone for Region[src]

impl Debug for Region[src]

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

impl Eq for Region[src]

impl HerokuEndpoint<Region, (), ()> for RegionDetails[src]

impl PartialEq<Region> for Region[src]

impl Serialize for Region[src]

impl StructuralEq for Region[src]

impl StructuralPartialEq for Region[src]

Auto Trait Implementations

impl RefUnwindSafe for Region

impl Send for Region

impl Sync for Region

impl Unpin for Region

impl UnwindSafe for Region

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.