[][src]Struct rusoto_groundstation::FrequencyBandwidth

pub struct FrequencyBandwidth {
    pub units: String,
    pub value: f64,
}

Object that describes the frequency bandwidth.

Fields

units: String

Frequency bandwidth units.

value: f64

Frequency bandwidth value. AWS Ground Station currently has the following bandwidth limitations:

  • For AntennaDownlinkDemodDecodeconfig, valid values are between 125 kHz to 650 MHz.

  • For AntennaDownlinkconfig, valid values are between 10 kHz to 54 MHz.

  • For AntennaUplinkConfig, valid values are between 10 kHz to 54 MHz.

Trait Implementations

impl Clone for FrequencyBandwidth[src]

impl Debug for FrequencyBandwidth[src]

impl Default for FrequencyBandwidth[src]

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

impl PartialEq<FrequencyBandwidth> for FrequencyBandwidth[src]

impl Serialize for FrequencyBandwidth[src]

impl StructuralPartialEq for FrequencyBandwidth[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> Same<T> for T

type Output = T

Should always be Self

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.