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