pub enum RetryResult<T> {
Success(T),
Failed(AnthropicError),
}
Expand description
Result of a retry execution
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for RetryResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for RetryResult<T>where
T: RefUnwindSafe,
impl<T> Send for RetryResult<T>where
T: Send,
impl<T> Sync for RetryResult<T>where
T: Sync,
impl<T> Unpin for RetryResult<T>where
T: Unpin,
impl<T> UnwindSafe for RetryResult<T>where
T: 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