pub enum Decision<Response> {
Retry(Duration),
Break(Response),
}
Variants§
Auto Trait Implementations§
impl<Response> RefUnwindSafe for Decision<Response>where Response: RefUnwindSafe,
impl<Response> Send for Decision<Response>where Response: Send,
impl<Response> Sync for Decision<Response>where Response: Sync,
impl<Response> Unpin for Decision<Response>where Response: Unpin,
impl<Response> UnwindSafe for Decision<Response>where Response: 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