Struct chirpstack_api::nc::HandleDownlinkMetaDataRequest[][src]

pub struct HandleDownlinkMetaDataRequest {
    pub dev_eui: Vec<u8>,
    pub multicast_group_id: Vec<u8>,
    pub tx_info: Option<DownlinkTxInfo>,
    pub phy_payload_byte_count: u32,
    pub mac_command_byte_count: u32,
    pub application_payload_byte_count: u32,
    pub message_type: i32,
    pub gateway_id: Vec<u8>,
}

Fields

dev_eui: Vec<u8>

Device EUI (8 bytes).

multicast_group_id: Vec<u8>

Multicast Group ID (UUID).

tx_info: Option<DownlinkTxInfo>

TX 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.

gateway_id: Vec<u8>

Gateway ID.

Implementations

impl HandleDownlinkMetaDataRequest[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 HandleDownlinkMetaDataRequest[src]

impl Debug for HandleDownlinkMetaDataRequest[src]

impl Default for HandleDownlinkMetaDataRequest[src]

impl Message for HandleDownlinkMetaDataRequest[src]

impl PartialEq<HandleDownlinkMetaDataRequest> for HandleDownlinkMetaDataRequest[src]

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