pub type A2aResult<T> = Result<T, A2aError>;
A2A Result type alias
pub enum A2aResult<T> { Ok(T), Err(A2aError), }
Contains the success value
Contains the error value