Struct stomp_parser::client::AckFrame
source · pub struct AckFrame {
pub id: IdValue,
pub transaction: TransactionValue,
pub receipt: Option<ReceiptValue>,
/* private fields */
}Expand description
Acknowledges a received message.
This frame has required headers id,transaction and optional headers receipt.
Fields§
§id: IdValueThe value of the id header.
transaction: TransactionValueThe value of the transaction header.
receipt: Option<ReceiptValue>The value of the receipt header.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for AckFrame
impl Send for AckFrame
impl Sync for AckFrame
impl Unpin for AckFrame
impl UnwindSafe for AckFrame
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