pub enum Status<O, E> {
Pending,
Success(O),
Failure(E),
}Expand description
Status of a persistent retry
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<O, E> Freeze for Status<O, E>
impl<O, E> RefUnwindSafe for Status<O, E>where
O: RefUnwindSafe,
E: RefUnwindSafe,
impl<O, E> Send for Status<O, E>
impl<O, E> Sync for Status<O, E>
impl<O, E> Unpin for Status<O, E>
impl<O, E> UnsafeUnpin for Status<O, E>where
O: UnsafeUnpin,
E: UnsafeUnpin,
impl<O, E> UnwindSafe for Status<O, E>where
O: 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