pub struct RemoteSettingsConfig {
    pub metrics_enabled: HashMap<String, bool>,
    pub pings_enabled: HashMap<String, bool>,
}
Expand description

Represents a list of metrics and an associated boolean property indicating if the metric is enabledfrom the remote-settings configuration store. The expected format of this data is stringified JSON in the following format:

{
    "category.metric_name": true
}

Fields§

§metrics_enabled: HashMap<String, bool>

This is a HashMap consisting of base_identifiers as keys and bool values representing an override for the disabled property of the metric, only inverted to reduce confusion. If a particular metric has a value of true here, it means the default of the metric will be overriden and set to the enabled state.

§pings_enabled: HashMap<String, bool>

This is a HashMap consisting of ping names as keys and boolean values representing on override for the default enabled state of the ping of the same name.

Implementations§

Creates a new RemoteSettingsConfig

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more
The type returned in the event of a conversion error.
Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Create a new handle for an Arc value Read more
Clone a handle Read more
Consume a handle, getting back the initial Arc<>
Get a clone of the Arc<> using a “borrowed” handle. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.