pub struct PubRel {
pub packet_identifier: u16,
pub reason_code: ReasonCode,
pub reason_string: Option<String>,
pub user_properties: Vec<(String, String)>,
}Expand description
The PubRel packet is sent during an ExactlyOnce quality of service
publish.
Fields§
§packet_identifier: u16The packet identifier is used to identify the message throughout the communication.
reason_code: ReasonCodeThe reason code for the acknowledgement. Can be any of:
SuccessNoMatchingSubscribersUnspecifiedErrorImplementationSpecificErrorNotAuthorizedTopicNameInvalidPacketIdentifierInUseQuotaExceededPayloadFormatInvalid
reason_string: Option<String>If available, the reason string describing the acknowledgement.
user_properties: Vec<(String, String)>General purpose user properties
Trait Implementations§
impl StructuralPartialEq for PubRel
Auto Trait Implementations§
impl Freeze for PubRel
impl RefUnwindSafe for PubRel
impl Send for PubRel
impl Sync for PubRel
impl Unpin for PubRel
impl UnwindSafe for PubRel
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