Struct google_spectrum1_explorer::GeoSpectrumSchedule[][src]

pub struct GeoSpectrumSchedule {
    pub spectrum_schedules: Option<Vec<SpectrumSchedule>>,
    pub location: Option<GeoLocation>,
}

The schedule of spectrum profiles available at a particular geolocation.

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

Fields

A list of available spectrum profiles and associated times. It will always be present, and at least one schedule must be included (though it may be empty if there is no available spectrum). More than one schedule may be included to represent future changes to the available spectrum.

The geolocation identifies the location at which the spectrum schedule applies. It will always be present.

Trait Implementations

impl Default for GeoSpectrumSchedule
[src]

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

impl Clone for GeoSpectrumSchedule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GeoSpectrumSchedule
[src]

Formats the value using the given formatter. Read more

impl Part for GeoSpectrumSchedule
[src]

Auto Trait Implementations