Enum chirpstack_api::as_pb::integration::ErrorType[][src]

#[repr(i32)]pub enum ErrorType {
    Unknown,
    DownlinkPayloadSize,
    DownlinkFcnt,
    UplinkCodec,
    DownlinkCodec,
    Otaa,
    UplinkFcntReset,
    UplinkMic,
    UplinkFcntRetransmission,
    DownlinkGateway,
}

Variants

Unknown

Unknown type.

DownlinkPayloadSize

Error related to the downlink payload size. Usually seen when the payload exceeded the maximum allowed payload size.

DownlinkFcnt

Error related to the downlink frame-counter. Usually seen when the frame-counter has already been used.

UplinkCodec

Uplink codec error.

DownlinkCodec

Downlink codec error.

Otaa

OTAA error.

UplinkFcntReset

Uplink frame-counter was reset.

UplinkMic

Uplink MIC error.

UplinkFcntRetransmission

Uplink frame-counter retransmission.

DownlinkGateway

Downlink gateway error.

Implementations

impl ErrorType[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of ErrorType.

pub fn from_i32(value: i32) -> Option<ErrorType>[src]

Converts an i32 to a ErrorType, or None if value is not a valid variant.

Trait Implementations

impl Clone for ErrorType[src]

impl Copy for ErrorType[src]

impl Debug for ErrorType[src]

impl Default for ErrorType[src]

impl Eq for ErrorType[src]

impl Hash for ErrorType[src]

impl Ord for ErrorType[src]

impl PartialEq<ErrorType> for ErrorType[src]

impl PartialOrd<ErrorType> for ErrorType[src]

impl StructuralEq for ErrorType[src]

impl StructuralPartialEq for ErrorType[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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]