[][src]Struct chirpstack_api::nc::HandleUplinkMetaDataRequest

pub struct HandleUplinkMetaDataRequest {
    pub dev_eui: Vec<u8>,
    pub tx_info: Option<UplinkTxInfo>,
    pub rx_info: Vec<UplinkRxInfo>,
    pub phy_payload_byte_count: u32,
    pub mac_command_byte_count: u32,
    pub application_payload_byte_count: u32,
    pub message_type: i32,
}

Fields

dev_eui: Vec<u8>

Device EUI (8 bytes).

tx_info: Option<UplinkTxInfo>

TX meta-data.

rx_info: Vec<UplinkRxInfo>

RX meta-data.

phy_payload_byte_count: u32

PHYPayload byte count.

mac_command_byte_count: u32

MAC-Command byte count.

application_payload_byte_count: u32

Application payload byte count.

message_type: i32

Message type.

Implementations

impl HandleUplinkMetaDataRequest[src]

pub fn message_type(&self) -> MType[src]

Returns the enum value of message_type, or the default if the field is set to an invalid enum value.

pub fn set_message_type(&mut self, value: MType)[src]

Sets message_type to the provided enum value.

Trait Implementations

impl Clone for HandleUplinkMetaDataRequest[src]

impl Debug for HandleUplinkMetaDataRequest[src]

impl Default for HandleUplinkMetaDataRequest[src]

impl Message for HandleUplinkMetaDataRequest[src]

impl PartialEq<HandleUplinkMetaDataRequest> for HandleUplinkMetaDataRequest[src]

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