Struct google_spectrum1_explorer::EventTime [] [src]

pub struct EventTime {
    pub stop_time: Option<String>,
    pub start_time: Option<String>,
}

The start and stop times of an event. This is used to indicate the time period for which a spectrum profile is valid.

Both times are expressed using the format, YYYY-MM-DDThh:mm:ssZ, as defined in RFC3339. The times must be expressed using UTC.

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

Fields

The exclusive end of the event. It will be present.

The inclusive start of the event. It will be present.

Trait Implementations

impl Debug for EventTime
[src]

Formats the value using the given formatter.

impl Clone for EventTime
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for EventTime
[src]

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

impl Part for EventTime
[src]