pub type Result<T> = Result<T, LlmError>;Expand description
Result type alias for provider operations.
Uses LlmError for structured error handling with
rich metadata (categories, retry info, user messages).
See LlmError for available error variants and helper methods:
is_retryable(): Check if retry makes sensecategory(): Get error category for routinguser_message(): Get safe user-facing message
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(LlmError),
}