[][src]Struct chirpstack_api::ns::GatewayProfileExtraChannel

pub struct GatewayProfileExtraChannel {
    pub modulation: Modulation,
    pub frequency: u32,
    pub bandwidth: u32,
    pub bitrate: u32,
    pub spreading_factors: Vec<u32>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

modulation: Modulationfrequency: u32bandwidth: u32bitrate: u32spreading_factors: Vec<u32>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl GatewayProfileExtraChannel[src]

pub fn new() -> GatewayProfileExtraChannel[src]

pub fn get_modulation(&self) -> Modulation[src]

pub fn clear_modulation(&mut self)[src]

pub fn set_modulation(&mut self, v: Modulation)[src]

pub fn get_frequency(&self) -> u32[src]

pub fn clear_frequency(&mut self)[src]

pub fn set_frequency(&mut self, v: u32)[src]

pub fn get_bandwidth(&self) -> u32[src]

pub fn clear_bandwidth(&mut self)[src]

pub fn set_bandwidth(&mut self, v: u32)[src]

pub fn get_bitrate(&self) -> u32[src]

pub fn clear_bitrate(&mut self)[src]

pub fn set_bitrate(&mut self, v: u32)[src]

pub fn get_spreading_factors(&self) -> &[u32][src]

pub fn clear_spreading_factors(&mut self)[src]

pub fn set_spreading_factors(&mut self, v: Vec<u32>)[src]

pub fn mut_spreading_factors(&mut self) -> &mut Vec<u32>[src]

pub fn take_spreading_factors(&mut self) -> Vec<u32>[src]

Trait Implementations

impl Clear for GatewayProfileExtraChannel[src]

impl Clone for GatewayProfileExtraChannel[src]

impl Debug for GatewayProfileExtraChannel[src]

impl Default for GatewayProfileExtraChannel[src]

impl<'a> Default for &'a GatewayProfileExtraChannel[src]

impl Message for GatewayProfileExtraChannel[src]

impl PartialEq<GatewayProfileExtraChannel> for GatewayProfileExtraChannel[src]

impl ProtobufValue for GatewayProfileExtraChannel[src]

impl StructuralPartialEq for GatewayProfileExtraChannel[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> 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.