Struct chirpstack_api::ns::DownlinkFrameLog[][src]

pub struct DownlinkFrameLog {
    pub phy_payload: Vec<u8>,
    pub tx_info: Option<DownlinkTxInfo>,
    pub token: u32,
    pub downlink_id: Vec<u8>,
    pub gateway_id: Vec<u8>,
    pub m_type: i32,
    pub dev_addr: Vec<u8>,
    pub dev_eui: Vec<u8>,
}

Fields

phy_payload: Vec<u8>

PHYPayload.

tx_info: Option<DownlinkTxInfo>

TX meta-data.

token: u32

Token (uint16 value). Deprecated: replaced by downlink_id.

downlink_id: Vec<u8>

Downlink ID (UUID).

gateway_id: Vec<u8>

Gateway ID.

m_type: i32

Message type.

dev_addr: Vec<u8>

Device address (optional).

dev_eui: Vec<u8>

Device EUI (optional).

Implementations

impl DownlinkFrameLog[src]

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

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

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

Sets m_type to the provided enum value.

Trait Implementations

impl Clone for DownlinkFrameLog[src]

impl Debug for DownlinkFrameLog[src]

impl Default for DownlinkFrameLog[src]

impl Message for DownlinkFrameLog[src]

impl PartialEq<DownlinkFrameLog> for DownlinkFrameLog[src]

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