Struct chirpstack_api::gw::DownlinkTxAck[][src]

pub struct DownlinkTxAck {
    pub gateway_id: Vec<u8>,
    pub token: u32,
    pub error: String,
    pub downlink_id: Vec<u8>,
    pub items: Vec<DownlinkTxAckItem>,
}

Fields

gateway_id: Vec<u8>

Gateway ID.

token: u32

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

error: String

Error. Deprecated: replaced by items.

downlink_id: Vec<u8>

Downlink ID (UUID).

items: Vec<DownlinkTxAckItem>

Downlink frame items. This list has the same length as the request and indicates which downlink frame has been emitted of the requested list (or why it failed). Note that at most one item has a positive acknowledgement.

Trait Implementations

impl Clone for DownlinkTxAck[src]

impl Debug for DownlinkTxAck[src]

impl Default for DownlinkTxAck[src]

impl Message for DownlinkTxAck[src]

impl PartialEq<DownlinkTxAck> for DownlinkTxAck[src]

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