pub struct PubRec {
pub packet_identifier: u16,
pub reason_code: ReasonCode,
pub reason_string: Option<String>,
pub user_properties: Vec<(String, String)>,
}Expand description
The PubRec 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 PubRec
Auto Trait Implementations§
impl Freeze for PubRec
impl RefUnwindSafe for PubRec
impl Send for PubRec
impl Sync for PubRec
impl Unpin for PubRec
impl UnwindSafe for PubRec
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