pub struct Modified {
pub delivery_failed: Option<bool>,
pub undeliverable_here: Option<bool>,
pub message_annotations: Option<FieldsVec>,
}
Fields§
§delivery_failed: Option<bool>
§undeliverable_here: Option<bool>
§message_annotations: Option<FieldsVec>
Implementations§
Source§impl Modified
impl Modified
pub fn delivery_failed(&self) -> Option<bool>
pub fn delivery_failed_mut(&mut self) -> &mut Option<bool>
pub fn undeliverable_here(&self) -> Option<bool>
pub fn undeliverable_here_mut(&mut self) -> &mut Option<bool>
pub fn message_annotations(&self) -> Option<&FieldsVec>
pub fn message_annotations_mut(&mut self) -> &mut Option<FieldsVec>
Trait Implementations§
Source§impl DecodeFormatted for Modified
impl DecodeFormatted for Modified
fn decode_with_format( input: &mut Bytes, fmt: u8, ) -> Result<Self, AmqpParseError>
impl Eq for Modified
impl StructuralPartialEq for Modified
Auto Trait Implementations§
impl Freeze for Modified
impl !RefUnwindSafe for Modified
impl Send for Modified
impl Sync for Modified
impl Unpin for Modified
impl !UnwindSafe for Modified
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