[][src]Struct google_storage1::BucketCors

pub struct BucketCors {
    pub origin: Option<Vec<String>>,
    pub response_header: Option<Vec<String>>,
    pub method: Option<Vec<String>>,
    pub max_age_seconds: Option<i32>,
}

The bucket's Cross-Origin Resource Sharing (CORS) configuration.

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

Fields

origin: Option<Vec<String>>

The list of Origins eligible to receive CORS response headers. Note: "*" is permitted in the list of origins, and means "any Origin".

response_header: Option<Vec<String>>

The list of HTTP headers other than the simple response headers to give permission for the user-agent to share across domains.

method: Option<Vec<String>>

The list of HTTP methods on which to include CORS response headers, (GET, OPTIONS, POST, etc) Note: "*" is permitted in the list of methods, and means "any method".

max_age_seconds: Option<i32>

The value, in seconds, to return in the Access-Control-Max-Age header used in preflight responses.

Trait Implementations

impl Part for BucketCors[src]

impl NestedType for BucketCors[src]

impl Default for BucketCors[src]

impl Clone for BucketCors[src]

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

Performs copy-assignment from source. Read more

impl Debug for BucketCors[src]

impl Serialize for BucketCors[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> BorrowMut<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]