Struct OutgoingPublish
pub struct OutgoingPublish<'a> {
pub packet_id: PacketId,
pub qos: QoS,
pub topic: &'a Topic,
pub payload: &'a [u8],
pub retain: bool,
pub properties: &'a PublishProperties,
pub dup: bool,
}Expand description
A QoS > 0 publish handed to the drain_outbox
callback to be put on the wire.
Fields§
§packet_id: PacketIdPacket identifier (stable across reconnects while the session resumes).
qos: QoSQuality of Service: QoS::AtLeastOnce or QoS::ExactlyOnce.
topic: &'a TopicTopic name.
payload: &'a [u8]Message payload.
retain: boolRetain flag.
properties: &'a PublishPropertiesOriginal publish properties.
dup: boolWhether the DUP flag must be set (§3.3.1.1): true if this entry has
already been on the wire on a previous connection or attempt.
Trait Implementations§
§impl<'a> Clone for OutgoingPublish<'a>
impl<'a> Clone for OutgoingPublish<'a>
§fn clone(&self) -> OutgoingPublish<'a>
fn clone(&self) -> OutgoingPublish<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl<'a> Debug for OutgoingPublish<'a>
impl<'a> Debug for OutgoingPublish<'a>
§impl<'a> PartialEq for OutgoingPublish<'a>
impl<'a> PartialEq for OutgoingPublish<'a>
impl<'a> Copy for OutgoingPublish<'a>
impl<'a> Eq for OutgoingPublish<'a>
impl<'a> StructuralPartialEq for OutgoingPublish<'a>
Auto Trait Implementations§
impl<'a> Freeze for OutgoingPublish<'a>
impl<'a> RefUnwindSafe for OutgoingPublish<'a>
impl<'a> Send for OutgoingPublish<'a>
impl<'a> Sync for OutgoingPublish<'a>
impl<'a> Unpin for OutgoingPublish<'a>
impl<'a> UnwindSafe for OutgoingPublish<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more