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
47
48
49
50
51
52
53
54
55
56
57
58
59
pub use ;
//pub use api::{comments};
pub use AuthDetails;
pub use Client;
pub use Error;
/// Gateway to interacting with the Posts API
///
/// ## Example
/// ```rust
/// # use gelbooru_api::{Client, Error, Rating, posts};
/// # async fn example() -> Result<(), Error> {
/// let client = Client::public();
///
/// posts()
/// .limit(50) // 50 posts
/// .rating(Rating::Safe) // that have the safe rating
/// .tags(&["hatsune_miku", "solo"]) // and the `hatsune_miku` and `solo` tags
/// .send(&client) // send request
/// .await?;
///
/// # Ok(())
/// # }
/// ```
/// Gateway to interacting with the Tags API
///
/// ## Example
/// ```rust
/// # use gelbooru_api::{Client, Error, Ordering, tags};
/// # async fn example() -> Result<(), Error> {
/// let client = Client::public();
///
/// tags()
/// .limit(5)
/// .pattern(&client, "_ol_")
/// .await?;
/// # Ok(())
/// # }
/// ```