[][src]Struct google_firebasehosting1_beta1::Rewrite

pub struct Rewrite {
    pub function: Option<String>,
    pub path: Option<String>,
    pub dynamic_links: Option<bool>,
    pub run: Option<CloudRunRewrite>,
    pub glob: Option<String>,
}

A rewrite represents an internal content rewrite on the version. If the pattern matches, the request will be handled as if it were to the destination path specified in the configuration.

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

Fields

function: Option<String>

The function to proxy requests to. Must match the exported function name exactly.

path: Option<String>

The URL path to rewrite the request to.

dynamic_links: Option<bool>

The request will be forwarded to Firebase Dynamic Links.

run: Option<CloudRunRewrite>

The request will be forwarded to Cloud Run.

glob: Option<String>

Required. The user-supplied glob pattern to match against the request URL path.

Trait Implementations

impl Part for Rewrite[src]

impl Default for Rewrite[src]

impl Clone for Rewrite[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Rewrite[src]

impl Serialize for Rewrite[src]

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

Auto Trait Implementations

impl Send for Rewrite

impl Unpin for Rewrite

impl Sync for Rewrite

impl UnwindSafe for Rewrite

impl RefUnwindSafe for Rewrite

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]