pub enum RetryMessage {
Retry,
Continue,
End,
Complete,
}Variants§
Retry
Starts the retry cycle. Later Retry messages are ignored.
Continue
Internal scheduled retry attempt after the cycle has already started.
End
Explicitly finishes the retry cycle.
Complete
Internal completion marker used to stop after the final target delivery had a chance to run.
Trait Implementations§
Source§impl Clone for RetryMessage
impl Clone for RetryMessage
Source§fn clone(&self) -> RetryMessage
fn clone(&self) -> RetryMessage
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 RetryMessage
impl Debug for RetryMessage
Source§impl Message for RetryMessage
impl Message for RetryMessage
Source§fn is_critical(&self) -> bool
fn is_critical(&self) -> bool
Returns
true if this message must be processed before the actor stops; defaults to false.Auto Trait Implementations§
impl Freeze for RetryMessage
impl RefUnwindSafe for RetryMessage
impl Send for RetryMessage
impl Sync for RetryMessage
impl Unpin for RetryMessage
impl UnsafeUnpin for RetryMessage
impl UnwindSafe for RetryMessage
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