[][src]Struct chirpstack_api::ns::GatewayProfile

pub struct GatewayProfile {
    pub id: Vec<u8>,
    pub channels: Vec<u32>,
    pub extra_channels: Vec<GatewayProfileExtraChannel>,
    pub stats_interval: Option<Duration>,
}

Fields

id: Vec<u8>

ID of the gateway-profile.

channels: Vec<u32>

Default channels (channels specified by the LoRaWAN Regional Parameters specification) enabled for this configuration.

extra_channels: Vec<GatewayProfileExtraChannel>

Extra channels added to the channel-configuration (in case the LoRaWAN region supports adding custom channels).

stats_interval: Option<Duration>

Stats interval. This defines the (expected) stats interval which the gateways using this gateway-profile are using.

Trait Implementations

impl Clone for GatewayProfile[src]

impl Debug for GatewayProfile[src]

impl Default for GatewayProfile[src]

impl Message for GatewayProfile[src]

impl PartialEq<GatewayProfile> for GatewayProfile[src]

impl StructuralPartialEq for GatewayProfile[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> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]