[][src]Struct chirpstack_api::ns::DeviceActivation

pub struct DeviceActivation {
    pub dev_eui: Vec<u8>,
    pub dev_addr: Vec<u8>,
    pub s_nwk_s_int_key: Vec<u8>,
    pub f_nwk_s_int_key: Vec<u8>,
    pub nwk_s_enc_key: Vec<u8>,
    pub f_cnt_up: u32,
    pub n_f_cnt_down: u32,
    pub a_f_cnt_down: u32,
    pub skip_f_cnt_check: bool,
}

Fields

dev_eui: Vec<u8>

DevEUI.

dev_addr: Vec<u8>

Device address (DevAddr).

s_nwk_s_int_key: Vec<u8>

SNwkSIntKey (serving network-server session integrity key).

f_nwk_s_int_key: Vec<u8>

FNwkSIntKey (forwarding network-server session integrity key).

nwk_s_enc_key: Vec<u8>

NwkSEncKey (network-server session encryption key).

f_cnt_up: u32

The next expected uplink frame-counter.

n_f_cnt_down: u32

The network frame-counter used for the next downlink frame.

a_f_cnt_down: u32

The application frame-counter used for the next downlink frame (LoRaWAN 1.1).

skip_f_cnt_check: bool

Skip frame-counter checks (this is insecure, but could be helpful for debugging).

Trait Implementations

impl Clone for DeviceActivation[src]

impl Debug for DeviceActivation[src]

impl Default for DeviceActivation[src]

impl Message for DeviceActivation[src]

impl PartialEq<DeviceActivation> for DeviceActivation[src]

impl StructuralPartialEq for DeviceActivation[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> 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]