Struct google_appengine1::FeatureSettings[][src]

pub struct FeatureSettings {
    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

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 Default for FeatureSettings
[src]

Returns the "default value" for a type. Read more

impl Clone for FeatureSettings
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FeatureSettings
[src]

Formats the value using the given formatter. Read more

impl Part for FeatureSettings
[src]

Auto Trait Implementations