[][src]Struct google_spectrum1_explorer::SpectrumMessage

pub struct SpectrumMessage {
    pub bandwidth: Option<f64>,
    pub frequency_ranges: Option<Vec<FrequencyRange>>,
}

Available spectrum can be logically characterized by a list of frequency ranges and permissible power levels for each range.

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

Fields

bandwidth: Option<f64>

The bandwidth (in Hertz) for which permissible power levels are specified. For example, FCC regulation would require only one spectrum specification at 6MHz bandwidth, but Ofcom regulation would require two specifications, at 0.1MHz and 8MHz. This parameter may be empty if there is no available spectrum. It will be present otherwise.

frequency_ranges: Option<Vec<FrequencyRange>>

The list of frequency ranges and permissible power levels. The list may be empty if there is no available spectrum, otherwise it will be present.

Trait Implementations

impl Clone for SpectrumMessage[src]

impl Debug for SpectrumMessage[src]

impl Default for SpectrumMessage[src]

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

impl Part for SpectrumMessage[src]

impl Serialize for SpectrumMessage[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