pub struct AgentExecutionFailure { /* private fields */ }Expand description
An execution error paired with the usage and tool-call accounting that was completed before the failure.
Agent execution still returns an error: this type only prevents already
incurred work from disappearing when a provider call, tool round, or
capability boundary fails. Rust callers can downcast the returned
anyhow::Error to this type when they need the partial accounting.
Implementations§
Source§impl AgentExecutionFailure
impl AgentExecutionFailure
Sourcepub fn usage(&self) -> &TokenUsage
pub fn usage(&self) -> &TokenUsage
Usage reported by provider calls that completed before the failure.
Sourcepub fn tool_calls_count(&self) -> usize
pub fn tool_calls_count(&self) -> usize
Tool calls admitted before the failure, including failed tool calls.
Trait Implementations§
Source§impl Debug for AgentExecutionFailure
impl Debug for AgentExecutionFailure
Source§impl Display for AgentExecutionFailure
impl Display for AgentExecutionFailure
Source§impl Error for AgentExecutionFailure
impl Error for AgentExecutionFailure
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for AgentExecutionFailure
impl RefUnwindSafe for AgentExecutionFailure
impl Send for AgentExecutionFailure
impl Sync for AgentExecutionFailure
impl Unpin for AgentExecutionFailure
impl UnsafeUnpin for AgentExecutionFailure
impl UnwindSafe for AgentExecutionFailure
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more