a2a-rs 0.4.0

Rust implementation of the Agent-to-Agent (A2A) Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Error types for adapter implementations

#[cfg(any(feature = "http-client", feature = "jsonrpc-client"))]
pub mod client;

#[cfg(feature = "server")]
pub mod server;

// Re-export client error types
#[cfg(any(feature = "http-client", feature = "jsonrpc-client"))]
pub use client::HttpClientError;

// Re-export server error types
#[cfg(feature = "http-server")]
pub use server::HttpServerError;