[][src]Struct google_firebasehosting1_beta1::CloudRunRewrite

pub struct CloudRunRewrite {
    pub region: Option<String>,
    pub service_id: Option<String>,
}

A configured rewrite that directs requests to a Cloud Run service. If the Cloud Run service does not exist when setting or updating your Firebase Hosting configuration, then the request fails. Any errors from the Cloud Run service are passed to the end user (for example, if you delete a service, any requests directed to that service receive a 404 error).

This type is not used in any activity, and only used as part of another schema.

Fields

region: Option<String>

Optional. User-provided region where the Cloud Run service is hosted.
Defaults to us-central1 if not supplied.

service_id: Option<String>

Required. User-defined ID of the Cloud Run service.

Trait Implementations

impl Clone for CloudRunRewrite[src]

impl Debug for CloudRunRewrite[src]

impl Default for CloudRunRewrite[src]

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

impl Part for CloudRunRewrite[src]

impl Serialize for CloudRunRewrite[src]

Auto Trait Implementations

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.

impl<T> Typeable for T where
    T: Any