Struct google_adexchangebuyer2_v2_beta1::MetricValue[][src]

pub struct MetricValue {
    pub variance: Option<String>,
    pub value: Option<String>,
}

A metric value, with an expected value and a variance; represents a count that may be either exact or estimated (i.e. when sampled).

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

Fields

The variance (i.e. square of the standard deviation) of the metric value. If value is exact, variance is 0. Can be used to calculate margin of error as a percentage of value, using the following formula, where Z is the standard constant that depends on the desired size of the confidence interval (e.g. for 90% confidence interval, use Z = 1.645):

marginOfError = 100 * Z * sqrt(variance) / value

The expected value of the metric.

Trait Implementations

impl Default for MetricValue
[src]

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

impl Clone for MetricValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MetricValue
[src]

Formats the value using the given formatter. Read more

impl Part for MetricValue
[src]

Auto Trait Implementations

impl Send for MetricValue

impl Sync for MetricValue