Struct google_spectrum1_explorer::FrequencyRange[][src]

pub struct FrequencyRange {
    pub start_hz: Option<f64>,
    pub channel_id: Option<String>,
    pub stop_hz: Option<f64>,
    pub max_power_d_bm: Option<f64>,
}

A specific range of frequencies together with the associated maximum power level and channel identifier.

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

Fields

The required inclusive start of the frequency range (in Hertz).

The database may include a channel identifier, when applicable. When it is included, the device should treat it as informative. The length of the identifier should not exceed 16 characters.

The required exclusive end of the frequency range (in Hertz).

The maximum total power level (EIRP)—computed over the corresponding operating bandwidth—that is permitted within the frequency range. Depending on the context in which the frequency-range element appears, this value may be required. For example, it is required in the available-spectrum response, available-spectrum-batch response, and spectrum-use notification message, but it should not be present (it is not applicable) when the frequency range appears inside a device-capabilities message.

Trait Implementations

impl Default for FrequencyRange
[src]

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

impl Clone for FrequencyRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FrequencyRange
[src]

Formats the value using the given formatter. Read more

impl Part for FrequencyRange
[src]

Auto Trait Implementations