pub enum OutboxLifecycle {
Active,
DeadLettered {
dead_lettered_at: OutboxDeadLetteredAt,
},
}Variants§
Trait Implementations§
Source§impl Clone for OutboxLifecycle
impl Clone for OutboxLifecycle
Source§fn clone(&self) -> OutboxLifecycle
fn clone(&self) -> OutboxLifecycle
Returns a duplicate of the value. Read more
1.0.0 · 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 OutboxLifecycle
impl Debug for OutboxLifecycle
Source§impl PartialEq for OutboxLifecycle
impl PartialEq for OutboxLifecycle
impl Eq for OutboxLifecycle
impl StructuralPartialEq for OutboxLifecycle
Auto Trait Implementations§
impl Freeze for OutboxLifecycle
impl RefUnwindSafe for OutboxLifecycle
impl Send for OutboxLifecycle
impl Sync for OutboxLifecycle
impl Unpin for OutboxLifecycle
impl UnwindSafe for OutboxLifecycle
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