Type Alias ApiResponseOrError

Source
pub type ApiResponseOrError<T> = Result<T, AnthropicErrorResponse>;
Expand description

Result type for Anthropic API responses

Aliased Type§

enum ApiResponseOrError<T> {
    Ok(T),
    Err(AnthropicErrorResponse),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AnthropicErrorResponse)

Contains the error value