[][src]Struct google_spectrum1_explorer::GeoSpectrumSchedule

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

spectrum_schedules: Option<Vec<SpectrumSchedule>>

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.

location: Option<GeoLocation>

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

Trait Implementations

impl Clone for GeoSpectrumSchedule[src]

impl Debug for GeoSpectrumSchedule[src]

impl Default for GeoSpectrumSchedule[src]

impl<'de> Deserialize<'de> for GeoSpectrumSchedule[src]

impl Part for GeoSpectrumSchedule[src]

impl Serialize for GeoSpectrumSchedule[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any