[][src]Enum tower_web::middleware::cors::AllowedOrigins

pub enum AllowedOrigins {
    Any {
        allow_null: bool,
    },
    Origins(BTreeSet<HeaderValue>),
}

Specifies which origins are allowed to access this resource

Variants

Any

Any origin is allowed

Fields of Any

allow_null: bool

Allowing a null origin is a separate setting, since it's risky to trust sources with a null origin, see https://tools.ietf.org/id/draft-abarth-origin-03.html#rfc.section.6 https://w3c.github.io/webappsec-cors-for-developers/

Origins(BTreeSet<HeaderValue>)

Allow a specific set of origins

Trait Implementations

impl Clone for AllowedOrigins[src]

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

Performs copy-assignment from source. Read more

impl Default for AllowedOrigins[src]

impl Debug for AllowedOrigins[src]

impl<A> FromIterator<A> for AllowedOrigins where
    A: Into<HeaderValue>, 
[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T