pub type ApiResponseOrError<T> = Result<T, AnthropicErrorResponse>;Expand description
Result type for Anthropic API responses
Aliased Type§
enum ApiResponseOrError<T> {
Ok(T),
Err(AnthropicErrorResponse),
}pub type ApiResponseOrError<T> = Result<T, AnthropicErrorResponse>;Result type for Anthropic API responses
enum ApiResponseOrError<T> {
Ok(T),
Err(AnthropicErrorResponse),
}