pub enum RetryAction<E, OE1> {
Retry(OE1),
Stop(E),
}Variants§
Trait Implementations§
Source§impl<E, OE1> Clone for RetryAction<E, OE1>
impl<E, OE1> Clone for RetryAction<E, OE1>
Source§impl<E, OE1> Debug for RetryAction<E, OE1>
impl<E, OE1> Debug for RetryAction<E, OE1>
Source§impl<E, OE1> PartialEq for RetryAction<E, OE1>
impl<E, OE1> PartialEq for RetryAction<E, OE1>
impl<E, OE1> Eq for RetryAction<E, OE1>
Auto Trait Implementations§
impl<E, OE1> Freeze for RetryAction<E, OE1>
impl<E, OE1> RefUnwindSafe for RetryAction<E, OE1>where
OE1: RefUnwindSafe,
E: RefUnwindSafe,
impl<E, OE1> Send for RetryAction<E, OE1>
impl<E, OE1> Sync for RetryAction<E, OE1>
impl<E, OE1> Unpin for RetryAction<E, OE1>
impl<E, OE1> UnwindSafe for RetryAction<E, OE1>where
OE1: UnwindSafe,
E: UnwindSafe,
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