1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Error types for CoinGecko REST API client operations.
//!
//! This module provides custom error types used throughout the CoinGecko REST API integration,
//! particularly for REST API client configuration and concurrent background data fetching.
use Error;
/// Errors from initializing the CoinGecko REST API builder.
///
/// These errors can occur during the initialization and configuration of the HTTP client
/// or while constructing request parameters.
/// Errors from fetching and handling data from the CoinGecko REST API.
///
/// These errors typically occur during API calls, response parsing, or data validation.