qubit_http/error/http_result.rs
1/*******************************************************************************
2 *
3 * Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! [`Result`] alias for HTTP operations.
11
12use super::http_error::HttpError;
13
14/// [`Result`] alias for HTTP operations: success value `T` or [`HttpError`].
15pub type HttpResult<T> = Result<T, HttpError>;