pub enum ErrorKind {
RateLimited,
NetworkError,
ServerError,
AuthError,
InvalidRequest,
ToolNotFound,
ContextOverflow,
Unknown,
}Expand description
Error classification for retry decisions.
Variants§
RateLimited
Rate limited by provider — always retryable
NetworkError
Network/connection error — retryable
ServerError
Transient server error (5xx) — retryable
AuthError
Authentication failure — NOT retryable
InvalidRequest
Invalid request (bad input, schema mismatch) — NOT retryable
ToolNotFound
Tool not found — NOT retryable
ContextOverflow
Context window exceeded — needs compaction, not retry
Unknown
Unknown error — retryable with caution
Implementations§
Trait Implementations§
impl Copy for ErrorKind
impl Eq for ErrorKind
impl StructuralPartialEq for ErrorKind
Auto Trait Implementations§
impl Freeze for ErrorKind
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnsafeUnpin for ErrorKind
impl UnwindSafe for ErrorKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.