tags

Function tags 

Source
pub fn tags() -> TagsRequestBuilder
Expand description

Gateway to interacting with the Tags API

ยงExample

let client = Client::public();

tags()
    .limit(5)
    .pattern(&client, "_ol_")
    .await?;