[][src]Struct wireless_regdb::FrequencyBand

pub struct FrequencyBand {
    pub freqs: (f64, f64),
    pub size: f64,
    pub power: f64,
    pub power_unit: Option<String>,
    pub flags: Flags,
    pub wmmrule: Option<String>,
}

Freqency entry

Fields

freqs: (f64, f64)size: f64power: f64power_unit: Option<String>flags: Flagswmmrule: Option<String>

Implementations

impl FrequencyBand[src]

pub fn new(
    freqs: (f64, f64),
    size: f64,
    power: f64,
    power_unit: Option<String>
) -> Self
[src]

Trait Implementations

impl Debug for FrequencyBand[src]

impl Eq for FrequencyBand[src]

impl Hash for FrequencyBand[src]

impl Ord for FrequencyBand[src]

impl PartialEq<FrequencyBand> for FrequencyBand[src]

impl PartialOrd<FrequencyBand> for FrequencyBand[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.