Struct google_spectrum1_explorer::SpectrumSchedule[][src]

pub struct SpectrumSchedule {
    pub event_time: Option<EventTime>,
    pub spectra: Option<Vec<SpectrumMessage>>,
}

The spectrum schedule element combines an event time with spectrum profile to define a time period in which the profile is valid.

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

Fields

The event time expresses when the spectrum profile is valid. It will always be present.

A list of spectrum messages representing the usable profile. It will always be present, but may be empty when there is no available spectrum.

Trait Implementations

impl Default for SpectrumSchedule
[src]

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

impl Clone for SpectrumSchedule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SpectrumSchedule
[src]

Formats the value using the given formatter. Read more

impl Part for SpectrumSchedule
[src]

Auto Trait Implementations