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