pub struct Delivery {
pub delivery_tag: LongLongUInt,
pub exchange: ShortString,
pub routing_key: ShortString,
pub redelivered: bool,
pub properties: BasicProperties,
pub data: Vec<u8>,
}
👎Deprecated: use lapin instead
Fields§
§delivery_tag: LongLongUInt
👎Deprecated: use lapin instead
§exchange: ShortString
👎Deprecated: use lapin instead
§routing_key: ShortString
👎Deprecated: use lapin instead
§redelivered: bool
👎Deprecated: use lapin instead
§properties: BasicProperties
👎Deprecated: use lapin instead
§data: Vec<u8>
👎Deprecated: use lapin instead
Trait Implementations§
impl StructuralPartialEq for Delivery
Auto Trait Implementations§
impl Freeze for Delivery
impl RefUnwindSafe for Delivery
impl Send for Delivery
impl Sync for Delivery
impl Unpin for Delivery
impl UnwindSafe for Delivery
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