pub struct InFlightPublish<S> {
pub packet_identifier: PacketIdentifier,
pub state: S,
}Expand description
An incomplete QoS 1 or 2 publication.
Fields§
§packet_identifier: PacketIdentifierThe packet identifier of the publication process.
state: SThe state of the publication process.
Trait Implementations§
Source§impl<S: Clone> Clone for InFlightPublish<S>
impl<S: Clone> Clone for InFlightPublish<S>
Source§fn clone(&self) -> InFlightPublish<S>
fn clone(&self) -> InFlightPublish<S>
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 moreSource§impl<S: Debug> Debug for InFlightPublish<S>
impl<S: Debug> Debug for InFlightPublish<S>
Source§impl<S: PartialEq> PartialEq for InFlightPublish<S>
impl<S: PartialEq> PartialEq for InFlightPublish<S>
impl<S: Copy> Copy for InFlightPublish<S>
impl<S: Eq> Eq for InFlightPublish<S>
impl<S> StructuralPartialEq for InFlightPublish<S>
Auto Trait Implementations§
impl<S> Freeze for InFlightPublish<S>where
S: Freeze,
impl<S> RefUnwindSafe for InFlightPublish<S>where
S: RefUnwindSafe,
impl<S> Send for InFlightPublish<S>where
S: Send,
impl<S> Sync for InFlightPublish<S>where
S: Sync,
impl<S> Unpin for InFlightPublish<S>where
S: Unpin,
impl<S> UnsafeUnpin for InFlightPublish<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for InFlightPublish<S>where
S: UnwindSafe,
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