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