[][src]Enum gcp_client::google::appengine::v1::SecurityLevel

#[repr(i32)]pub enum SecurityLevel {
    SecureUnspecified,
    SecureNever,
    SecureOptional,
    SecureAlways,
}

Methods to enforce security (HTTPS) on a URL.

Variants

SecureUnspecified

Not specified.

SecureNever

Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.

SecureOptional

Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.

SecureAlways

Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.

Implementations

impl SecurityLevel[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of SecurityLevel.

pub fn from_i32(value: i32) -> Option<SecurityLevel>[src]

Converts an i32 to a SecurityLevel, or None if value is not a valid variant.

Trait Implementations

impl Clone for SecurityLevel[src]

impl Copy for SecurityLevel[src]

impl Debug for SecurityLevel[src]

impl Default for SecurityLevel[src]

impl Eq for SecurityLevel[src]

impl From<SecurityLevel> for i32[src]

impl Hash for SecurityLevel[src]

impl Ord for SecurityLevel[src]

impl PartialEq<SecurityLevel> for SecurityLevel[src]

impl PartialOrd<SecurityLevel> for SecurityLevel[src]

impl StructuralEq for SecurityLevel[src]

impl StructuralPartialEq for SecurityLevel[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]