Struct google_firebaseremoteconfig1::RemoteConfigParameterValue[][src]

pub struct RemoteConfigParameterValue {
    pub use_in_app_default: Option<bool>,
    pub value: Option<String>,
}

A RemoteConfigParameter's "value" (either the default value, or the value associated with a condition name) is either a string, or the "use_in_app_default" indicator (which means to leave out the parameter from the returned <key, value> map that is the output of the parameter fetch). We represent the "use_in_app_default" as a bool, but (when using the boolean instead of the string) it should always be true.

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

Fields

if true, omit the parameter from the map of fetched parameter values

the string to set the parameter to

Trait Implementations

impl Default for RemoteConfigParameterValue
[src]

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

impl Clone for RemoteConfigParameterValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RemoteConfigParameterValue
[src]

Formats the value using the given formatter. Read more

impl Part for RemoteConfigParameterValue
[src]

Auto Trait Implementations