Available on crate feature helix only.
Expand description

Helix endpoints regarding search

Examples

let client = HelixClient::new();
let req = SearchCategoriesRequest::builder().query("Pokémon").build();

println!("{:?}", &client.req_get(req, &token).await?.data);

Re-exports

pub use types::TwitchCategory as Category;

Modules

Returns a list of games or categories that match the query via name either entirely or partially. search-categories

Returns a list of channels (users who have streamed within the past 6 months) that match the query via channel name or description either entirely or partially. search-channels

Structs