posts

Function posts 

Source
pub fn posts<'a>() -> PostsRequestBuilder<'a>
Expand description

Gateway to interacting with the Posts API

ยงExample

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?;