Struct stomp_parser::client::NackFrame
source · pub struct NackFrame {
pub id: IdValue,
pub transaction: TransactionValue,
pub receipt: Option<ReceiptValue>,
/* private fields */
}Expand description
Indicates that the client did not, or could not, process a 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 NackFrame
impl Send for NackFrame
impl Sync for NackFrame
impl Unpin for NackFrame
impl UnwindSafe for NackFrame
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