Struct chirpstack_api::as_pb::external::api::DeviceProfile[][src]

pub struct DeviceProfile {
Show fields pub id: String, pub name: String, pub organization_id: i64, pub network_server_id: i64, pub supports_class_b: bool, pub class_b_timeout: u32, pub ping_slot_period: u32, pub ping_slot_dr: u32, pub ping_slot_freq: u32, pub supports_class_c: bool, pub class_c_timeout: u32, pub mac_version: String, pub reg_params_revision: String, pub rx_delay_1: u32, pub rx_dr_offset_1: u32, pub rx_datarate_2: u32, pub rx_freq_2: u32, pub factory_preset_freqs: Vec<u32>, pub max_eirp: u32, pub max_duty_cycle: u32, pub supports_join: bool, pub rf_region: String, pub supports_32bit_f_cnt: bool, pub payload_codec: String, pub payload_encoder_script: String, pub payload_decoder_script: String, pub geoloc_buffer_ttl: u32, pub geoloc_min_buffer_size: u32, pub tags: HashMap<String, String>, pub uplink_interval: Option<Duration>, pub adr_algorithm_id: String,
}

Fields

id: String

Device-profile ID (UUID string).

name: String

Device-profile name.

organization_id: i64

Organization ID to which the service-profile is assigned.

network_server_id: i64

Network-server ID on which the service-profile is provisioned.

supports_class_b: bool

End-Device supports Class B.

class_b_timeout: u32

Maximum delay for the End-Device to answer a MAC request or a confirmed DL frame (mandatory if class B mode supported).

ping_slot_period: u32

Mandatory if class B mode supported.

ping_slot_dr: u32

Mandatory if class B mode supported.

ping_slot_freq: u32

Mandatory if class B mode supported.

supports_class_c: bool

End-Device supports Class C.

class_c_timeout: u32

Maximum delay for the End-Device to answer a MAC request or a confirmed DL frame (mandatory if class C mode supported).

mac_version: String

Version of the LoRaWAN supported by the End-Device.

reg_params_revision: String

Revision of the Regional Parameters document supported by the End-Device.

rx_delay_1: u32

Class A RX1 delay (mandatory for ABP).

rx_dr_offset_1: u32

RX1 data rate offset (mandatory for ABP).

rx_datarate_2: u32

RX2 data rate (mandatory for ABP).

rx_freq_2: u32

RX2 channel frequency (mandatory for ABP).

factory_preset_freqs: Vec<u32>

List of factory-preset frequencies (mandatory for ABP).

max_eirp: u32

Maximum EIRP supported by the End-Device.

max_duty_cycle: u32

Maximum duty cycle supported by the End-Device.

supports_join: bool

End-Device supports Join (OTAA) or not (ABP).

rf_region: String

RF region name.

supports_32bit_f_cnt: bool

End-Device uses 32bit FCnt (mandatory for LoRaWAN 1.0 End-Device).

payload_codec: String

Payload codec. Leave blank to disable the codec feature.

payload_encoder_script: String

Payload encoder script. Depending the codec, it is possible to provide a script which implements the encoder function.

payload_decoder_script: String

Payload decoder script. Depending the codec, it is possible to provide a script which implements the decoder function.

geoloc_buffer_ttl: u32

Geolocation buffer TTL (in seconds). When > 0, uplink RX meta-data will be stored in a buffer so that the meta-data of multiple uplinks can be used for geolocation.

geoloc_min_buffer_size: u32

Geolocation minimum buffer size. When > 0, geolocation will only be performed when the buffer has at least the given size.

tags: HashMap<String, String>

User defined tags.

uplink_interval: Option<Duration>

Uplink interval. This defines the expected uplink interval which the device uses for communication. When the uplink interval has expired and no uplink has been received, the device is considered inactive.

adr_algorithm_id: String

ADR algorithm ID. In case this is left blank, or is configured to a non-existing ADR algorithm (plugin), then it falls back to ‘default’.

Trait Implementations

impl Clone for DeviceProfile[src]

fn clone(&self) -> DeviceProfile[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for DeviceProfile[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for DeviceProfile[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Message for DeviceProfile[src]

fn encode_raw<B>(&self, buf: &mut B) where
    B: BufMut
[src]

fn merge_field<B>(
    &mut self,
    tag: u32,
    wire_type: WireType,
    buf: &mut B,
    ctx: DecodeContext
) -> Result<(), DecodeError> where
    B: Buf
[src]

fn encoded_len(&self) -> usize[src]

Returns the encoded length of the message without a length delimiter.

fn clear(&mut self)[src]

Clears the message, resetting all fields to their default.

fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
    B: BufMut
[src]

Encodes the message to a buffer. Read more

fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
    B: BufMut
[src]

Encodes the message with a length-delimiter to a buffer. Read more

fn decode<B>(buf: B) -> Result<Self, DecodeError> where
    Self: Default,
    B: Buf
[src]

Decodes an instance of the message from a buffer. Read more

fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
    Self: Default,
    B: Buf
[src]

Decodes a length-delimited instance of the message from the buffer.

fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
    B: Buf
[src]

Decodes an instance of the message from a buffer, and merges it into self. Read more

fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
    B: Buf
[src]

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

impl PartialEq<DeviceProfile> for DeviceProfile[src]

fn eq(&self, other: &DeviceProfile) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &DeviceProfile) -> bool[src]

This method tests for !=.

impl StructuralPartialEq for DeviceProfile[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> IntoRequest<T> for T[src]

pub fn into_request(self) -> Request<T>[src]

Wrap the input message T in a tonic::Request

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V

impl<T> WithSubscriber for T[src]

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
[src]

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

fn with_current_subscriber(self) -> WithDispatch<Self>[src]

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more