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
40
41
42
//! Blocking HTTP helpers with the crate user agent.
use Client;
use crateResult;
/// Returns the user agent used by crate-managed HTTP requests.
/// Builds a blocking reqwest client.
///
/// # Errors
///
/// Returns [`crate::LauncherError`] if the client cannot be constructed.
/// Fetches a URL as text.
///
/// # Errors
///
/// Returns [`crate::LauncherError`] if the request fails, returns an error
/// status, or the body cannot be decoded as text.
/// Fetches a URL and decodes the JSON body.
///
/// # Errors
///
/// Returns [`crate::LauncherError`] if the request fails, returns an error
/// status, or the body cannot be decoded as `T`.