Type Alias AgentResult
pub type AgentResult<T> = Result<T, AgentError>;Expand description
Convenience alias for fallible agent-runtime operations.
Lets call sites write AgentResult<T> instead of the more verbose
Result<T, AgentError>.
Aliased Type§
pub enum AgentResult<T> {
Ok(T),
Err(AgentError),
}