Struct chirpstack_api::ns::Device[][src]

pub struct Device {
    pub dev_eui: Vec<u8>,
    pub device_profile_id: Vec<u8>,
    pub service_profile_id: Vec<u8>,
    pub routing_profile_id: Vec<u8>,
    pub skip_f_cnt_check: bool,
    pub reference_altitude: f64,
    pub is_disabled: bool,
}

Fields

dev_eui: Vec<u8>

DevEUI.

device_profile_id: Vec<u8>

Device-profile ID.

service_profile_id: Vec<u8>

Service-profile ID.

routing_profile_id: Vec<u8>

Routing-profile ID.

skip_f_cnt_check: bool

Skip frame-counter check. Note that turning this on is insecure and is intended for debugging only.

reference_altitude: f64

Reference altitude. When using geolocation, this altitude will be used as a reference (when supported by the geolocation-server) to increase geolocation accuracy.

is_disabled: bool

Device is disabled.

Trait Implementations

impl Clone for Device[src]

impl Debug for Device[src]

impl Default for Device[src]

impl Message for Device[src]

impl PartialEq<Device> for Device[src]

impl StructuralPartialEq for Device[src]

Auto Trait Implementations

impl RefUnwindSafe for Device

impl Send for Device

impl Sync for Device

impl Unpin for Device

impl UnwindSafe for Device

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> 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]