Skip to main content

ToolExecutionError

Struct ToolExecutionError 

Source
pub struct ToolExecutionError { /* private fields */ }
Expand description

One public envelope for every tool execution failure.

It carries normalized policy fields, separate operator-facing diagnostics and model-visible output, and an optional concrete source that can be downcast. Explicit constructors use the diagnostic message as model-visible output so deliberately authored validation failures remain actionable. Self::from_error instead treats an arbitrary source as operator-only and exposes safe kind-level feedback. Use Self::with_model_feedback or Self::with_model_output to provide a purpose-built presentation.

Implementations§

Source§

impl ToolExecutionError

Source

pub fn new(kind: ToolErrorKind, message: impl Into<String>) -> Self

Construct an error with an explicit normalized kind.

Source

pub fn invalid_args(message: impl Into<String>) -> Self

Invalid arguments.

Source

pub fn timeout(message: impl Into<String>) -> Self

Timeout.

Source

pub fn cancelled(message: impl Into<String>) -> Self

Cancellation.

Source

pub fn not_found(message: impl Into<String>) -> Self

Missing tool or resource.

Source

pub fn permission_denied(message: impl Into<String>) -> Self

An authorization or permission failure.

This is an ordinary execution error. Use Self::refused when the tool intentionally declines the operation so hooks and telemetry can preserve the refusal as a distinct disposition.

Source

pub fn refused(message: impl Into<String>) -> Self

An intentional, tool-authored refusal.

Refusals use the normalized ToolErrorKind::PermissionDenied kind but remain distinct from permission failures in ToolResult.

Source

pub fn rate_limited(message: impl Into<String>) -> Self

Rate limit.

Source

pub fn provider(message: impl Into<String>) -> Self

Upstream provider failure.

Source

pub fn network(message: impl Into<String>) -> Self

Network failure.

Source

pub fn other(message: impl Into<String>) -> Self

Catch-all failure.

Source

pub fn from_error<E>(error: E) -> Self
where E: Error + WasmCompatSend + WasmCompatSync + 'static,

Build a safely presented Other error from a concrete source.

The source’s display string remains available as the operator-facing Self::message and the source remains downcastable, but the model sees only the stable feedback for ToolErrorKind::Other. Passing an existing ToolExecutionError preserves its classification and presentation.

Source

pub fn with_model_feedback(self, feedback: impl Into<String>) -> Self

Replace the model-visible output with literal text feedback.

Source

pub fn with_model_output(self, output: ToolOutput) -> Self

Replace the model-visible output with canonical JSON or multimodal content.

Source

pub fn redact_model_feedback(self) -> Self

Replace potentially sensitive diagnostics with stable, kind-specific model feedback.

Explicit error constructors make messages model-visible by default to keep failures actionable. Call this when an explicitly constructed error’s operator diagnostic may contain secrets; Self::from_error already uses this safe presentation for arbitrary source errors.

Source

pub fn with_retryable(self, retryable: bool) -> Self

Override the retryability hint.

Source

pub fn with_code(self, code: impl Into<String>) -> Self

Attach an application/provider code.

Source

pub fn with_http_status(self, status: u16) -> Self

Attach an HTTP status.

Source

pub fn with_source<E>(self, source: E) -> Self
where E: Error + WasmCompatSend + WasmCompatSync + 'static,

Preserve a concrete source for later downcasting.

Source

pub const fn kind(&self) -> ToolErrorKind

Normalized kind.

Source

pub fn message(&self) -> &str

Operator-facing message.

Source

pub fn model_feedback(&self) -> Option<&str>

Literal model feedback, when the presentation is exactly one plain text block.

Use Self::model_output for JSON or multimodal feedback.

Source

pub fn model_output(&self) -> &ToolOutput

Canonical model-visible presentation for this error.

Source

pub const fn retryable(&self) -> Option<bool>

Retryability hint.

Source

pub fn code(&self) -> Option<&str>

Application/provider code.

Source

pub const fn http_status(&self) -> Option<u16>

HTTP status.

Source

pub const fn is_refusal(&self) -> bool

Whether the tool intentionally refused the operation.

Source

pub fn downcast_ref<E>(&self) -> Option<&E>
where E: Error + WasmCompatSend + WasmCompatSync + 'static,

Downcast the concrete source to E.

Source

pub fn is<E>(&self) -> bool
where E: Error + WasmCompatSend + WasmCompatSync + 'static,

Whether the concrete source has type E.

Trait Implementations§

Source§

impl Clone for ToolExecutionError

Source§

fn clone(&self) -> ToolExecutionError

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ToolExecutionError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ToolExecutionError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for ToolExecutionError

Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T> ToStringFallible for T
where T: Display,

Source§

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WasmCompatSend for T
where T: Send,

Source§

impl<T> WasmCompatSync for T
where T: Sync,

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more