pub struct Properties {
pub correlation_id: String,
pub content_type: String,
pub content_encoding: String,
pub reply_to: Option<String>,
pub priority: u8,
pub delivery_mode: u8,
}
Expand description
Properties
Fields§
§correlation_id: String
§content_type: String
§content_encoding: String
§reply_to: Option<String>
§priority: u8
§delivery_mode: u8
Implementations§
Source§impl Properties
impl Properties
Sourcepub fn convert_to_amqp_properties(&self) -> AmqpProperties
pub fn convert_to_amqp_properties(&self) -> AmqpProperties
convert to amqp properties
Auto Trait Implementations§
impl Freeze for Properties
impl RefUnwindSafe for Properties
impl Send for Properties
impl Sync for Properties
impl Unpin for Properties
impl UnwindSafe for Properties
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