[][src]Struct ntex_mqtt::v5::codec::PublishProperties

pub struct PublishProperties {
    pub topic_alias: Option<NonZeroU16>,
    pub correlation_data: Option<Bytes>,
    pub message_expiry_interval: Option<NonZeroU32>,
    pub content_type: Option<ByteString>,
    pub user_properties: UserProperties,
    pub is_utf8_payload: Option<bool>,
    pub response_topic: Option<ByteString>,
    pub subscription_ids: Option<Vec<NonZeroU32>>,
}

Fields

topic_alias: Option<NonZeroU16>correlation_data: Option<Bytes>message_expiry_interval: Option<NonZeroU32>content_type: Option<ByteString>user_properties: UserPropertiesis_utf8_payload: Option<bool>response_topic: Option<ByteString>subscription_ids: Option<Vec<NonZeroU32>>

Trait Implementations

impl Clone for PublishProperties[src]

impl Debug for PublishProperties[src]

impl Default for PublishProperties[src]

impl PartialEq<PublishProperties> for PublishProperties[src]

impl StructuralPartialEq for PublishProperties[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> Same<T> for T

type Output = T

Should always be Self

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>,