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
43
44
45
46
use Arc;
use crateResult;
use crateHttpClient;
use crate;
/// Jobs resource — poll job status and fetch results.
///
/// All screenshot endpoints return a `job_id` immediately (HTTP 202). Use
/// these methods to track progress and retrieve the final screenshots.
///
/// For a fully automated capture-and-wait flow, see
/// [`ScreenshotsResource::capture_web_and_wait`](crate::resources::screenshots::ScreenshotsResource::capture_web_and_wait)
/// or [`ScreenshotFreeAPIClient::capture`](crate::client::ScreenshotFreeAPIClient::capture).