Struct google_cloudmonitoring2_beta2::PointDistribution [] [src]

pub struct PointDistribution {
    pub buckets: Option<Vec<PointDistributionBucket>>,
    pub underflow_bucket: Option<PointDistributionUnderflowBucket>,
    pub overflow_bucket: Option<PointDistributionOverflowBucket>,
}

Distribution data point value type. When writing distribution points, try to be consistent with the boundaries of your buckets. If you must modify the bucket boundaries, then do so by merging, partitioning, or appending rather than skewing them.

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

Fields

The finite buckets.

The underflow bucket.

The overflow bucket.

Trait Implementations

impl Debug for PointDistribution
[src]

Formats the value using the given formatter.

impl Clone for PointDistribution
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for PointDistribution
[src]

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

impl Part for PointDistribution
[src]