[][src]Enum mqttrs::QoS

pub enum QoS {
    AtMostOnce,
    AtLeastOnce,
    ExactlyOnce,
}

Packet delivery Quality of Service level.

Variants

AtMostOnce

QoS 0. No ack needed.

AtLeastOnce

QoS 1. One ack needed.

ExactlyOnce

QoS 2. Two acks needed.

Trait Implementations

impl Clone for QoS[src]

impl Copy for QoS[src]

impl Eq for QoS[src]

impl PartialEq<QoS> for QoS[src]

impl Debug for QoS[src]

Auto Trait Implementations

impl Send for QoS

impl Sync for QoS

impl Unpin for QoS

impl UnwindSafe for QoS

impl RefUnwindSafe for QoS

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]