Struct google_monitoring3::TimeInterval [] [src]

pub struct TimeInterval {
    pub end_time: Option<String>,
    pub start_time: Option<String>,
}

A time interval extending from after startTime through endTime. If startTime is omitted, the interval is the single point in time, endTime.

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

Fields

Required. The end of the interval. The interval includes this time.

If this value is omitted, the interval is a point in time, endTime. If startTime is present, it must be earlier than (less than) endTime. The interval begins after startTime—it does not include startTime.

Trait Implementations

impl Debug for TimeInterval
[src]

Formats the value using the given formatter.

impl Clone for TimeInterval
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for TimeInterval
[src]

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

impl Part for TimeInterval
[src]