pub struct Header {
pub durable: bool,
pub priority: u8,
pub ttl: Option<u32>,
pub first_acquirer: bool,
pub delivery_count: u32,
}
Expand description
Header of the message
Fields§
§durable: bool
§priority: u8
§ttl: Option<u32>
§first_acquirer: bool
§delivery_count: u32
Trait Implementations§
impl Eq for Header
impl StructuralPartialEq for Header
Auto Trait Implementations§
impl Freeze for Header
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnwindSafe for Header
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