pub struct OutboxQuarantineReason(/* private fields */);Expand description
Why a message stopped being retried.
Required, not optional: a message removed from the queue without a stated reason is a silent discard, which is the one outcome an auditable engine cannot offer.
Implementations§
Trait Implementations§
Source§impl Clone for OutboxQuarantineReason
impl Clone for OutboxQuarantineReason
Source§fn clone(&self) -> OutboxQuarantineReason
fn clone(&self) -> OutboxQuarantineReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OutboxQuarantineReason
impl Debug for OutboxQuarantineReason
Source§impl<'de> Deserialize<'de> for OutboxQuarantineReason
impl<'de> Deserialize<'de> for OutboxQuarantineReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for OutboxQuarantineReason
impl Display for OutboxQuarantineReason
impl Eq for OutboxQuarantineReason
Source§impl PartialEq for OutboxQuarantineReason
impl PartialEq for OutboxQuarantineReason
Source§impl Serialize for OutboxQuarantineReason
impl Serialize for OutboxQuarantineReason
impl StructuralPartialEq for OutboxQuarantineReason
Auto Trait Implementations§
impl Freeze for OutboxQuarantineReason
impl RefUnwindSafe for OutboxQuarantineReason
impl Send for OutboxQuarantineReason
impl Sync for OutboxQuarantineReason
impl Unpin for OutboxQuarantineReason
impl UnsafeUnpin for OutboxQuarantineReason
impl UnwindSafe for OutboxQuarantineReason
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