pub enum ErrorKind {
Other,
TimedOut,
CallFailed,
}Expand description
Why a call failed, where the answer changes what to do about it.
Variants§
Other
TimedOut
The call ran past its deadline and was killed. Worth its own kind because asking again means waiting exactly as long again, which is the one failure where a retry costs more than it can possibly win.
CallFailed
The CLI itself could not answer: a non-zero exit, or an error event in place of a message. Distinct from an answer that arrived and could not be parsed, which is what the retry exists for and which a model corrects readily when told what was wrong. Nothing about a refusal, a quota, or a crash is corrected by being asked the same thing again.
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.