Struct google_spectrum1_explorer::api::AntennaCharacteristics[][src]

pub struct AntennaCharacteristics {
    pub height: Option<f64>,
    pub height_type: Option<String>,
    pub height_uncertainty: 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: 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.

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.

Trait Implementations

impl Clone for AntennaCharacteristics[src]

impl Debug for AntennaCharacteristics[src]

impl Default for AntennaCharacteristics[src]

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

impl Part for AntennaCharacteristics[src]

impl Serialize for AntennaCharacteristics[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> Instrument 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.