[][src]Struct google_appengine1::FeatureSettings

pub struct FeatureSettings {
    pub use_container_optimized_os: Option<bool>,
    pub split_health_checks: Option<bool>,
}

The feature specific settings to be used in the application. These define behaviors that are user configurable.

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

Fields

use_container_optimized_os: Option<bool>

If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.

split_health_checks: Option<bool>

Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.

Trait Implementations

impl Clone for FeatureSettings[src]

impl Debug for FeatureSettings[src]

impl Default for FeatureSettings[src]

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

impl Part for FeatureSettings[src]

impl Serialize for FeatureSettings[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<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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> Typeable for T where
    T: Any