Struct google_jobs3::BucketizedCount[][src]

pub struct BucketizedCount {
    pub count: Option<i32>,
    pub range: Option<BucketRange>,
}

Represents count of jobs within one bucket.

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

Fields

Number of jobs whose numeric field value fall into range.

Bucket range on which histogram was performed for the numeric field, that is, the count represents number of jobs in this range.

Trait Implementations

impl Default for BucketizedCount
[src]

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

impl Clone for BucketizedCount
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BucketizedCount
[src]

Formats the value using the given formatter. Read more

impl Part for BucketizedCount
[src]

Auto Trait Implementations