[][src]Struct google_spectrum1_explorer::AntennaCharacteristics

pub struct AntennaCharacteristics {
    pub height_type: Option<String>,
    pub height_uncertainty: Option<f64>,
    pub height: Option<f64>,
}

Antenna characteristics provide additional information, such as the antenna height, antenna type, etc. Whether antenna characteristics must be provided in a request depends on the device type and regulatory domain.

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

Fields

height_type: Option<String>

If the height is required, then the height type (AGL for above ground level or AMSL for above mean sea level) is also required. The default is AGL.

height_uncertainty: Option<f64>

The height uncertainty in meters. Whether this is required depends on the regulatory domain.

height: Option<f64>

The antenna height in meters. Whether the antenna height is required depends on the device type and the regulatory domain. Note that the height may be negative.

Trait Implementations

impl Part for AntennaCharacteristics[src]

impl Clone for AntennaCharacteristics[src]

impl Default for AntennaCharacteristics[src]

impl Debug for AntennaCharacteristics[src]

impl Serialize for AntennaCharacteristics[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

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