Struct google_monitoring3::TimeInterval[][src]

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

A time interval extending just after a start time through an end time. If the start time is the same as the end time, then the interval represents a single point in time.

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

Fields

Required. The end of the time interval.

Optional. The beginning of the time interval. The default value for the start time is the end time. The start time must not be later than the end time.

Trait Implementations

impl Default for TimeInterval
[src]

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

impl Clone for TimeInterval
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TimeInterval
[src]

Formats the value using the given formatter. Read more

impl Part for TimeInterval
[src]

Auto Trait Implementations