Struct google_spectrum1_explorer::SpectrumMessage[][src]

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

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.

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 Default for SpectrumMessage
[src]

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

impl Clone for SpectrumMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SpectrumMessage
[src]

Formats the value using the given formatter. Read more

impl Part for SpectrumMessage
[src]

Auto Trait Implementations