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