pub struct ToolError {
pub kind: ToolErrorKind,
pub message: String,
pub retry_safety: RetrySafety,
pub metadata: BTreeMap<String, Value>,
}Expand description
Structured tool execution error.
Fields§
§kind: ToolErrorKindNormalized category.
message: StringSafe human-readable explanation.
retry_safety: RetrySafetyRetry-safety classification.
metadata: BTreeMap<String, Value>Namespaced diagnostic metadata.
Implementations§
Source§impl ToolError
impl ToolError
Sourcepub const fn diagnostic_code(&self) -> &'static str
pub const fn diagnostic_code(&self) -> &'static str
Returns a stable diagnostic identifier without exposing error payloads.
Resolve causes and corrective actions with runifold ai explain <code>.
This does not change the error’s retry safety, Display or serialization.
Sourcepub fn local(kind: ToolErrorKind, message: impl Into<String>) -> Self
pub fn local(kind: ToolErrorKind, message: impl Into<String>) -> Self
Creates a local tool error with unknown retry safety.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ToolError
impl<'de> Deserialize<'de> for ToolError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Error for ToolError
impl Error for ToolError
1.30.0 · 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()
Source§impl IntoToolError for ToolError
impl IntoToolError for ToolError
Source§fn into_tool_error(self) -> ToolError
fn into_tool_error(self) -> ToolError
Converts this application failure into the canonical Tool error.
impl StructuralPartialEq for ToolError
Auto Trait Implementations§
impl Freeze for ToolError
impl RefUnwindSafe for ToolError
impl Send for ToolError
impl Sync for ToolError
impl Unpin for ToolError
impl UnsafeUnpin for ToolError
impl UnwindSafe for ToolError
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