claude-agent 0.2.25

Rust SDK for building AI agents with Anthropic's Claude - Direct API, no CLI dependency
Documentation
//! Sandbox error types.

use std::io;
use std::path::PathBuf;

use thiserror::Error;

#[derive(Debug, Error)]
pub enum SandboxError {
    #[error("sandbox not supported on this platform")]
    NotSupported,

    #[error("sandbox not available: {0}")]
    NotAvailable(String),

    #[error("failed to create sandbox: {0}")]
    Creation(String),

    #[error("failed to apply sandbox rules: {0}")]
    RuleApplication(String),

    #[error("path not accessible: {}", .0.display())]
    PathNotAccessible(PathBuf),

    #[error("invalid sandbox configuration: {0}")]
    InvalidConfig(String),

    #[error("io error: {0}")]
    Io(#[from] io::Error),
}

pub type SandboxResult<T> = Result<T, SandboxError>;