pub type AgentResult<T> = Result<T, AgentError>;
pub enum AgentResult<T> { Ok(T), Err(AgentError), }
Contains the success value
Contains the error value