[][src]Enum mqttrs::QosPid

pub enum QosPid {
    AtMostOnce,
    AtLeastOnce(Pid),
    ExactlyOnce(Pid),
}

Combined QoS/Pid.

Used only in Publish packets.

Variants

AtMostOnce
AtLeastOnce(Pid)
ExactlyOnce(Pid)

Methods

impl QosPid[src]

pub fn pid(self) -> Option<Pid>[src]

Extract the Pid from a QosPid, if any.

pub fn qos(self) -> QoS[src]

Extract the QoS from a QosPid.

Trait Implementations

impl Clone for QosPid[src]

impl Copy for QosPid[src]

impl Debug for QosPid[src]

impl Eq for QosPid[src]

impl PartialEq<QosPid> for QosPid[src]

impl StructuralEq for QosPid[src]

impl StructuralPartialEq for QosPid[src]

Auto Trait Implementations

impl RefUnwindSafe for QosPid

impl Send for QosPid

impl Sync for QosPid

impl Unpin for QosPid

impl UnwindSafe for QosPid

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, U> Into<U> for T where
    U: From<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.