[][src]Struct google_firebasehosting1_beta1::ServingConfig

pub struct ServingConfig {
    pub clean_urls: Option<bool>,
    pub headers: Option<Vec<Header>>,
    pub redirects: Option<Vec<Redirect>>,
    pub app_association: Option<String>,
    pub trailing_slash_behavior: Option<String>,
    pub rewrites: Option<Vec<Rewrite>>,
}

The configuration for how incoming requests to a site should be routed and processed before serving content. The patterns are matched and applied according to a specific priority order.

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

Fields

clean_urls: Option<bool>

Defines whether to drop the file extension from uploaded files.

headers: Option<Vec<Header>>

A list of custom response headers that are added to the content if the request URL path matches the glob.

redirects: Option<Vec<Redirect>>

A list of globs that will cause the response to redirect to another location.

app_association: Option<String>

How to handle well known App Association files.

trailing_slash_behavior: Option<String>

Defines how to handle a trailing slash in the URL path.

rewrites: Option<Vec<Rewrite>>

A list of rewrites that will act as if the service were given the destination URL.

Trait Implementations

impl Part for ServingConfig[src]

impl Default for ServingConfig[src]

impl Clone for ServingConfig[src]

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

Performs copy-assignment from source. Read more

impl Debug for ServingConfig[src]

impl Serialize for ServingConfig[src]

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

Auto Trait Implementations

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]