[][src]Struct chirpstack_api::ns::Gateway

pub struct Gateway {
    pub id: Vec<u8>,
    pub location: Option<Location>,
    pub gateway_profile_id: Vec<u8>,
    pub boards: Vec<GatewayBoard>,
    pub routing_profile_id: Vec<u8>,
}

Fields

id: Vec<u8>

Gateway ID (8 bytes EUI64).

location: Option<Location>

Gateway location.

gateway_profile_id: Vec<u8>

ID of the gateway-profile (optional).

boards: Vec<GatewayBoard>

Gateway boards configuration (optional). This is (currently) only needed when the gateway supports the fine-timestamp and you you would like to add the FPGA ID to the gateway meta-data or would like ChirpStack Network Server to decrypt the fine-timestamp.

routing_profile_id: Vec<u8>

Routing Profile ID. The routing-profile ID defines to which application-server statistical data for this gateway is forwarded.

Trait Implementations

impl Clone for Gateway[src]

impl Debug for Gateway[src]

impl Default for Gateway[src]

impl Message for Gateway[src]

impl PartialEq<Gateway> for Gateway[src]

impl StructuralPartialEq for Gateway[src]

Auto Trait Implementations

impl RefUnwindSafe for Gateway

impl Send for Gateway

impl Sync for Gateway

impl Unpin for Gateway

impl UnwindSafe for Gateway

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]