pub type Result<T> = Result<T, AgentsError>;Expand description
A specialized Result type for the Agents SDK.
This type alias simplifies function signatures by providing a default
error type of AgentsError.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(AgentsError),
}